├── .gitignore ├── .python-version ├── README.md ├── SFCC_API.xml ├── api_to_dash_doc.py ├── code.css ├── docs ├── compareapi │ └── html │ │ ├── index.html │ │ └── whatsnew │ │ ├── Pipelet_API_and_Behavior_Versioning.html │ │ ├── Script_API_and_Behavior_Versioning.html │ │ ├── Whats_Deprecated_in_the_Job_Step_API.html │ │ ├── Whats_Deprecated_in_the_Pipelet_API.html │ │ ├── Whats_Deprecated_in_the_Script_API.html │ │ ├── Whats_New_in_the_Job_Step_API.html │ │ ├── Whats_New_in_the_Pipelet_API.html │ │ ├── Whats_New_in_the_Script_API.html │ │ ├── images │ │ ├── dwscriptlarge.gif │ │ ├── error.gif │ │ ├── icon-api_16.png │ │ ├── info.gif │ │ ├── inherit.gif │ │ └── warning.gif │ │ ├── js │ │ └── dwapi.js │ │ ├── overview.html │ │ ├── styles │ │ └── javadoc.css │ │ └── toc.html ├── content │ ├── aspecttype.json │ ├── attributedefinition.json │ ├── attributedefinitiongroup.json │ ├── cmsrecord.json │ ├── common.json │ ├── componentconstructor.json │ ├── componenttype.json │ ├── componenttypeexclusion.json │ ├── componenttypeinclusion.json │ ├── contentassetcomponentconfig.json │ ├── contentassetpageconfig.json │ ├── contentassetstructuredcontentdata.json │ ├── customeditortype.json │ ├── editordefinition.json │ ├── image.json │ ├── pagetype.json │ ├── regiondefinition.json │ └── visibilityrule.json ├── jobstepapi │ └── html │ │ ├── api │ │ ├── images │ │ │ ├── dwscriptlarge.gif │ │ │ ├── error.gif │ │ │ ├── icon-api_16.png │ │ │ ├── info.gif │ │ │ ├── inherit.gif │ │ │ └── warning.gif │ │ ├── jobStepList.html │ │ ├── jobstep.CatalogDeltaExport.html │ │ ├── jobstep.CreateSitemap.html │ │ ├── jobstep.CustomerListsDeltaExport.html │ │ ├── jobstep.DownloadActiveDataFromStorage.html │ │ ├── jobstep.ExecuteCategorizationRules.html │ │ ├── jobstep.ExecuteDataReplication.html │ │ ├── jobstep.ExecutePipeline.html │ │ ├── jobstep.ExecutePreconfiguredCodeReplicationProcess.html │ │ ├── jobstep.ExecutePreconfiguredDataReplicationProcess.html │ │ ├── jobstep.ExecuteScriptModule.html │ │ ├── jobstep.ExportABTests.html │ │ ├── jobstep.ExportAssignments.html │ │ ├── jobstep.ExportCatalog.html │ │ ├── jobstep.ExportContent.html │ │ ├── jobstep.ExportContentSlots.html │ │ ├── jobstep.ExportCouponCodes.html │ │ ├── jobstep.ExportCoupons.html │ │ ├── jobstep.ExportCustomObjects.html │ │ ├── jobstep.ExportCustomerGroups.html │ │ ├── jobstep.ExportCustomerList.html │ │ ├── jobstep.ExportCustomers.html │ │ ├── jobstep.ExportFacebookFeed.html │ │ ├── jobstep.ExportGiftCertificates.html │ │ ├── jobstep.ExportInventoryLists.html │ │ ├── jobstep.ExportMetaData.html │ │ ├── jobstep.ExportOrders.html │ │ ├── jobstep.ExportPageLocalization.html │ │ ├── jobstep.ExportPriceBook.html │ │ ├── jobstep.ExportProductLists.html │ │ ├── jobstep.ExportPromotions.html │ │ ├── jobstep.ExportShippingMethods.html │ │ ├── jobstep.ExportSourceCodeGroups.html │ │ ├── jobstep.ExportStores.html │ │ ├── jobstep.ExportTaxTable.html │ │ ├── jobstep.ImportABTests.html │ │ ├── jobstep.ImportActiveData.html │ │ ├── jobstep.ImportAssignments.html │ │ ├── jobstep.ImportCatalog.html │ │ ├── jobstep.ImportContent.html │ │ ├── jobstep.ImportContentSlots.html │ │ ├── jobstep.ImportCouponCodeRedemptions.html │ │ ├── jobstep.ImportCoupons.html │ │ ├── jobstep.ImportCustomObjects.html │ │ ├── jobstep.ImportCustomerGroups.html │ │ ├── jobstep.ImportCustomerList.html │ │ ├── jobstep.ImportCustomerLists.html │ │ ├── jobstep.ImportCustomers.html │ │ ├── jobstep.ImportGiftCertificates.html │ │ ├── jobstep.ImportInventoryLists.html │ │ ├── jobstep.ImportKeyValueMapping.html │ │ ├── jobstep.ImportPageLocalization.html │ │ ├── jobstep.ImportPriceBook.html │ │ ├── jobstep.ImportProductLists.html │ │ ├── jobstep.ImportPromotions.html │ │ ├── jobstep.ImportShippingMethods.html │ │ ├── jobstep.ImportSiteArchive.html │ │ ├── jobstep.ImportSourceCodeGroups.html │ │ ├── jobstep.ImportStores.html │ │ ├── jobstep.ImportTaxTable.html │ │ ├── jobstep.IncludeStepsFromJob.html │ │ ├── jobstep.InvalidateCache.html │ │ ├── jobstep.LibraryDeltaExport.html │ │ ├── jobstep.SearchReindex.html │ │ ├── jobstep.SiteExport.html │ │ ├── jobstep.UndoPreconfiguredCodeReplicationProcess.html │ │ ├── jobstep.UndoPreconfiguredDataReplicationProcess.html │ │ ├── jobstep.UpdateStorefrontURLs.html │ │ ├── jobstep.UploadActiveDataBackupToStorage.html │ │ ├── jobstep.UploadActiveDataToStorage.html │ │ ├── js │ │ │ └── dwapi.js │ │ ├── overview.html │ │ └── styles │ │ │ └── javadoc.css │ │ └── index.html ├── pipeletapi │ └── html │ │ ├── api │ │ ├── group.Analytics(deprecated).html │ │ ├── group.Basket(deprecated).html │ │ ├── group.Basket.html │ │ ├── group.Catalog.html │ │ ├── group.Common.html │ │ ├── group.Content.html │ │ ├── group.CustomObject.html │ │ ├── group.Customer(deprecated).html │ │ ├── group.Customer.html │ │ ├── group.Forms.html │ │ ├── group.ImpEx(deprecated).html │ │ ├── group.ImpEx.html │ │ ├── group.Job.html │ │ ├── group.Order(deprecated).html │ │ ├── group.Order.html │ │ ├── group.OrderCenter.html │ │ ├── group.Payment.html │ │ ├── group.ProductList.html │ │ ├── group.Replication(deprecated).html │ │ ├── group.Scripting.html │ │ ├── group.Search.html │ │ ├── group.SiteMap.html │ │ ├── group.SourceCode.html │ │ ├── group.Store.html │ │ ├── group.Util.html │ │ ├── group.VeriSign(deprecated).html │ │ ├── groupList.html │ │ ├── images │ │ │ ├── dwscriptlarge.gif │ │ │ ├── error.gif │ │ │ ├── icon-api_16.png │ │ │ ├── info.gif │ │ │ ├── inherit.gif │ │ │ └── warning.gif │ │ ├── js │ │ │ └── dwapi.js │ │ ├── overview.html │ │ ├── pipelet.ABCTest.html │ │ ├── pipelet.AcceptForm.html │ │ ├── pipelet.AddBonusProductToBasket.html │ │ ├── pipelet.AddCouponToBasket.html │ │ ├── pipelet.AddCouponToBasket2.html │ │ ├── pipelet.AddGiftCertificateToBasket.html │ │ ├── pipelet.AddGiftCertificateToProductList.html │ │ ├── pipelet.AddPaymentInstrumentToBasket.html │ │ ├── pipelet.AddProductToBasket.html │ │ ├── pipelet.AddProductToProductList.html │ │ ├── pipelet.Assign.html │ │ ├── pipelet.CancelOrder.html │ │ ├── pipelet.ClearFormElement.html │ │ ├── pipelet.CreateBasketForOrderEdit.html │ │ ├── pipelet.CreateBasketPaymentInstrument.html │ │ ├── pipelet.CreateBillingAddress.html │ │ ├── pipelet.CreateCustomObject.html │ │ ├── pipelet.CreateCustomer.html │ │ ├── pipelet.CreateCustomerAddress.html │ │ ├── pipelet.CreateCustomerPaymentInstrument.html │ │ ├── pipelet.CreateCustomerProfile.html │ │ ├── pipelet.CreateGiftCertificate.html │ │ ├── pipelet.CreateOrder.html │ │ ├── pipelet.CreateOrder2.html │ │ ├── pipelet.CreateOrderNo.html │ │ ├── pipelet.CreatePaymentTransaction.html │ │ ├── pipelet.CreateProductList.html │ │ ├── pipelet.CreateProductListRegistrant.html │ │ ├── pipelet.CreateShipment.html │ │ ├── pipelet.CreateShippingAddress.html │ │ ├── pipelet.CreateShippingOrders.html │ │ ├── pipelet.Eval.html │ │ ├── pipelet.ExportABTests.html │ │ ├── pipelet.ExportCatalog.html │ │ ├── pipelet.ExportContent.html │ │ ├── pipelet.ExportCouponCodes.html │ │ ├── pipelet.ExportCoupons.html │ │ ├── pipelet.ExportCustomObjects.html │ │ ├── pipelet.ExportCustomerGroups.html │ │ ├── pipelet.ExportCustomerList.html │ │ ├── pipelet.ExportCustomers.html │ │ ├── pipelet.ExportGiftCertificates.html │ │ ├── pipelet.ExportInventoryLists.html │ │ ├── pipelet.ExportMetaData.html │ │ ├── pipelet.ExportOrders.html │ │ ├── pipelet.ExportPriceAdjustmentLimits.html │ │ ├── pipelet.ExportPriceBooks.html │ │ ├── pipelet.ExportProductLists.html │ │ ├── pipelet.ExportPromotions.html │ │ ├── pipelet.ExportShippingMethods.html │ │ ├── pipelet.ExportSlots.html │ │ ├── pipelet.ExportSourceCodes.html │ │ ├── pipelet.ExportStores.html │ │ ├── pipelet.ExportTaxTable.html │ │ ├── pipelet.FailOrder.html │ │ ├── pipelet.FinalizeOAuthLogin.html │ │ ├── pipelet.GenerateResetPasswordToken.html │ │ ├── pipelet.GetBasket.html │ │ ├── pipelet.GetBrands.html │ │ ├── pipelet.GetCategory.html │ │ ├── pipelet.GetContent.html │ │ ├── pipelet.GetCustomer.html │ │ ├── pipelet.GetCustomerAddress.html │ │ ├── pipelet.GetCustomerPaymentInstruments.html │ │ ├── pipelet.GetCustomerProfile.html │ │ ├── pipelet.GetGiftCertificate.html │ │ ├── pipelet.GetLastVisitedProducts.html │ │ ├── pipelet.GetNearestStores.html │ │ ├── pipelet.GetOrder.html │ │ ├── pipelet.GetPaymentProcessor.html │ │ ├── pipelet.GetProduct.html │ │ ├── pipelet.GetProductList.html │ │ ├── pipelet.GetProductLists.html │ │ ├── pipelet.GetReplicationStatus.html │ │ ├── pipelet.GetSearchSuggestions.html │ │ ├── pipelet.ImportABTests.html │ │ ├── pipelet.ImportActiveData.html │ │ ├── pipelet.ImportCatalog.html │ │ ├── pipelet.ImportContent.html │ │ ├── pipelet.ImportCoupons.html │ │ ├── pipelet.ImportCustomObjects.html │ │ ├── pipelet.ImportCustomerGroups.html │ │ ├── pipelet.ImportCustomerList.html │ │ ├── pipelet.ImportCustomers.html │ │ ├── pipelet.ImportGiftCertificates.html │ │ ├── pipelet.ImportInventoryLists.html │ │ ├── pipelet.ImportKeyValueMapping.html │ │ ├── pipelet.ImportPriceAdjustmentLimits.html │ │ ├── pipelet.ImportPriceBooks.html │ │ ├── pipelet.ImportProductLists.html │ │ ├── pipelet.ImportPromotions.html │ │ ├── pipelet.ImportShippingMethods.html │ │ ├── pipelet.ImportSlots.html │ │ ├── pipelet.ImportSourceCodes.html │ │ ├── pipelet.ImportStores.html │ │ ├── pipelet.ImportTaxTable.html │ │ ├── pipelet.InitiateOAuthLogin.html │ │ ├── pipelet.InvalidateFormElement.html │ │ ├── pipelet.InvalidateWebCache.html │ │ ├── pipelet.LoginAgentUser.html │ │ ├── pipelet.LoginCustomer.html │ │ ├── pipelet.LoginOnBehalfCustomer.html │ │ ├── pipelet.LogoutAgentUser.html │ │ ├── pipelet.LogoutCustomer.html │ │ ├── pipelet.Paging.html │ │ ├── pipelet.PlaceOrder.html │ │ ├── pipelet.RedeemGiftCertificate.html │ │ ├── pipelet.RedirectURL.html │ │ ├── pipelet.RemoveBasketPaymentInstrument.html │ │ ├── pipelet.RemoveCouponLineItem.html │ │ ├── pipelet.RemoveCustomObject.html │ │ ├── pipelet.RemoveCustomer.html │ │ ├── pipelet.RemoveCustomerAddress.html │ │ ├── pipelet.RemoveCustomerPaymentInstrument.html │ │ ├── pipelet.RemoveGiftCertificateLineItem.html │ │ ├── pipelet.RemoveProductLineItem.html │ │ ├── pipelet.RemoveProductList.html │ │ ├── pipelet.RemoveProductListItem.html │ │ ├── pipelet.ReplaceLineItemProduct.html │ │ ├── pipelet.ReserveInventoryForOrder.html │ │ ├── pipelet.ResetCustomerPassword.html │ │ ├── pipelet.ResetCustomerPasswordWithToken.html │ │ ├── pipelet.ReturnImport.html │ │ ├── pipelet.RunJobNow.html │ │ ├── pipelet.Script.html │ │ ├── pipelet.Search.html │ │ ├── pipelet.SearchCustomObject.html │ │ ├── pipelet.SearchProductLists.html │ │ ├── pipelet.SearchRedirectURL.html │ │ ├── pipelet.SearchSystemObject.html │ │ ├── pipelet.SendGoogleSiteMap.html │ │ ├── pipelet.SendMail.html │ │ ├── pipelet.SetApplicablePriceBooks.html │ │ ├── pipelet.SetCustomerPassword.html │ │ ├── pipelet.SetFormOptions.html │ │ ├── pipelet.SetRequestLocale.html │ │ ├── pipelet.SetSessionCurrency.html │ │ ├── pipelet.SetShippingMethod.html │ │ ├── pipelet.SetSourceCode.html │ │ ├── pipelet.SourceCodeRedirectURL.html │ │ ├── pipelet.StartCheckout.html │ │ ├── pipelet.TriggerReplication.html │ │ ├── pipelet.UpdateFormWithObject.html │ │ ├── pipelet.UpdateObjectWithForm.html │ │ ├── pipelet.UpdatePageMetaData.html │ │ ├── pipelet.UpdateProductLineItemQuantity.html │ │ ├── pipelet.UpdateProductOptionSelections.html │ │ ├── pipelet.UpdateProductVariationSelections.html │ │ ├── pipelet.UpdateSearchIndex.html │ │ ├── pipelet.UpdateShippingOrders.html │ │ ├── pipelet.VSAuthorizeCreditCard.html │ │ ├── pipelet.ValidateActiveDataFile.html │ │ ├── pipelet.ValidateResetPasswordToken.html │ │ ├── pipelet.ValidateXMLFile.html │ │ ├── pipelet.VerifyCreditCard.html │ │ ├── pipelet.VerifyCreditCardExpirationDate.html │ │ ├── pipelet.VerifyCreditCardNumber.html │ │ ├── pipelet.VerifyPaymentCard.html │ │ ├── pipeletDeprecated.html │ │ ├── pipeletList.html │ │ ├── pipeletVersioning.html │ │ └── styles │ │ │ └── javadoc.css │ │ └── index.html ├── quota │ └── html │ │ ├── API_Quotas.html │ │ ├── Object_Quotas.html │ │ ├── images │ │ ├── dwscriptlarge.gif │ │ ├── error.gif │ │ ├── icon-api_16.png │ │ ├── info.gif │ │ ├── inherit.gif │ │ └── warning.gif │ │ ├── index.html │ │ └── styles │ │ └── javadoc.css ├── scriptapi │ └── html │ │ ├── api │ │ ├── apiDeprecated.html │ │ ├── apiVersioning.html │ │ ├── classList.html │ │ ├── class_TopLevel_APIException.html │ │ ├── class_TopLevel_Array.html │ │ ├── class_TopLevel_ArrayBuffer.html │ │ ├── class_TopLevel_BigInt.html │ │ ├── class_TopLevel_Boolean.html │ │ ├── class_TopLevel_ConversionError.html │ │ ├── class_TopLevel_DataView.html │ │ ├── class_TopLevel_Date.html │ │ ├── class_TopLevel_ES6Iterator.html │ │ ├── class_TopLevel_Error.html │ │ ├── class_TopLevel_EvalError.html │ │ ├── class_TopLevel_Fault.html │ │ ├── class_TopLevel_Float32Array.html │ │ ├── class_TopLevel_Float64Array.html │ │ ├── class_TopLevel_Function.html │ │ ├── class_TopLevel_Generator.html │ │ ├── class_TopLevel_IOError.html │ │ ├── class_TopLevel_Int16Array.html │ │ ├── class_TopLevel_Int32Array.html │ │ ├── class_TopLevel_Int8Array.html │ │ ├── class_TopLevel_InternalError.html │ │ ├── class_TopLevel_Iterable.html │ │ ├── class_TopLevel_Iterator.html │ │ ├── class_TopLevel_JSON.html │ │ ├── class_TopLevel_Map.html │ │ ├── class_TopLevel_Math.html │ │ ├── class_TopLevel_Module.html │ │ ├── class_TopLevel_Namespace.html │ │ ├── class_TopLevel_Number.html │ │ ├── class_TopLevel_Object.html │ │ ├── class_TopLevel_QName.html │ │ ├── class_TopLevel_RangeError.html │ │ ├── class_TopLevel_ReferenceError.html │ │ ├── class_TopLevel_RegExp.html │ │ ├── class_TopLevel_Set.html │ │ ├── class_TopLevel_StopIteration.html │ │ ├── class_TopLevel_String.html │ │ ├── class_TopLevel_Symbol.html │ │ ├── class_TopLevel_SyntaxError.html │ │ ├── class_TopLevel_SystemError.html │ │ ├── class_TopLevel_TypeError.html │ │ ├── class_TopLevel_URIError.html │ │ ├── class_TopLevel_Uint16Array.html │ │ ├── class_TopLevel_Uint32Array.html │ │ ├── class_TopLevel_Uint8Array.html │ │ ├── class_TopLevel_Uint8ClampedArray.html │ │ ├── class_TopLevel_WeakMap.html │ │ ├── class_TopLevel_WeakSet.html │ │ ├── class_TopLevel_XML.html │ │ ├── class_TopLevel_XMLList.html │ │ ├── class_TopLevel_XMLStreamError.html │ │ ├── class_TopLevel_arguments.html │ │ ├── class_TopLevel_global.html │ │ ├── class_dw_alert_Alert.html │ │ ├── class_dw_alert_Alerts.html │ │ ├── class_dw_campaign_ABTest.html │ │ ├── class_dw_campaign_ABTestMgr.html │ │ ├── class_dw_campaign_ABTestSegment.html │ │ ├── class_dw_campaign_AmountDiscount.html │ │ ├── class_dw_campaign_ApproachingDiscount.html │ │ ├── class_dw_campaign_BonusChoiceDiscount.html │ │ ├── class_dw_campaign_BonusDiscount.html │ │ ├── class_dw_campaign_Campaign.html │ │ ├── class_dw_campaign_CampaignMgr.html │ │ ├── class_dw_campaign_CampaignStatusCodes.html │ │ ├── class_dw_campaign_Coupon.html │ │ ├── class_dw_campaign_CouponMgr.html │ │ ├── class_dw_campaign_CouponRedemption.html │ │ ├── class_dw_campaign_CouponStatusCodes.html │ │ ├── class_dw_campaign_Discount.html │ │ ├── class_dw_campaign_DiscountPlan.html │ │ ├── class_dw_campaign_FixedPriceDiscount.html │ │ ├── class_dw_campaign_FixedPriceShippingDiscount.html │ │ ├── class_dw_campaign_FreeDiscount.html │ │ ├── class_dw_campaign_FreeShippingDiscount.html │ │ ├── class_dw_campaign_PercentageDiscount.html │ │ ├── class_dw_campaign_PercentageOptionDiscount.html │ │ ├── class_dw_campaign_PriceBookPriceDiscount.html │ │ ├── class_dw_campaign_Promotion.html │ │ ├── class_dw_campaign_PromotionMgr.html │ │ ├── class_dw_campaign_PromotionPlan.html │ │ ├── class_dw_campaign_SlotContent.html │ │ ├── class_dw_campaign_SourceCodeGroup.html │ │ ├── class_dw_campaign_SourceCodeInfo.html │ │ ├── class_dw_campaign_SourceCodeStatusCodes.html │ │ ├── class_dw_campaign_TotalFixedPriceDiscount.html │ │ ├── class_dw_catalog_Catalog.html │ │ ├── class_dw_catalog_CatalogMgr.html │ │ ├── class_dw_catalog_Category.html │ │ ├── class_dw_catalog_CategoryAssignment.html │ │ ├── class_dw_catalog_CategoryLink.html │ │ ├── class_dw_catalog_PriceBook.html │ │ ├── class_dw_catalog_PriceBookMgr.html │ │ ├── class_dw_catalog_Product.html │ │ ├── class_dw_catalog_ProductActiveData.html │ │ ├── class_dw_catalog_ProductAttributeModel.html │ │ ├── class_dw_catalog_ProductAvailabilityLevels.html │ │ ├── class_dw_catalog_ProductAvailabilityModel.html │ │ ├── class_dw_catalog_ProductInventoryList.html │ │ ├── class_dw_catalog_ProductInventoryMgr.html │ │ ├── class_dw_catalog_ProductInventoryRecord.html │ │ ├── class_dw_catalog_ProductLink.html │ │ ├── class_dw_catalog_ProductMgr.html │ │ ├── class_dw_catalog_ProductOption.html │ │ ├── class_dw_catalog_ProductOptionModel.html │ │ ├── class_dw_catalog_ProductOptionValue.html │ │ ├── class_dw_catalog_ProductPriceInfo.html │ │ ├── class_dw_catalog_ProductPriceModel.html │ │ ├── class_dw_catalog_ProductPriceTable.html │ │ ├── class_dw_catalog_ProductSearchHit.html │ │ ├── class_dw_catalog_ProductSearchModel.html │ │ ├── class_dw_catalog_ProductSearchRefinementDefinition.html │ │ ├── class_dw_catalog_ProductSearchRefinementValue.html │ │ ├── class_dw_catalog_ProductSearchRefinements.html │ │ ├── class_dw_catalog_ProductVariationAttribute.html │ │ ├── class_dw_catalog_ProductVariationAttributeValue.html │ │ ├── class_dw_catalog_ProductVariationModel.html │ │ ├── class_dw_catalog_Recommendation.html │ │ ├── class_dw_catalog_SearchModel.html │ │ ├── class_dw_catalog_SearchRefinementDefinition.html │ │ ├── class_dw_catalog_SearchRefinementValue.html │ │ ├── class_dw_catalog_SearchRefinements.html │ │ ├── class_dw_catalog_SortingOption.html │ │ ├── class_dw_catalog_SortingRule.html │ │ ├── class_dw_catalog_Store.html │ │ ├── class_dw_catalog_StoreGroup.html │ │ ├── class_dw_catalog_StoreInventoryFilter.html │ │ ├── class_dw_catalog_StoreInventoryFilterValue.html │ │ ├── class_dw_catalog_StoreMgr.html │ │ ├── class_dw_catalog_Variant.html │ │ ├── class_dw_catalog_VariationGroup.html │ │ ├── class_dw_content_Content.html │ │ ├── class_dw_content_ContentMgr.html │ │ ├── class_dw_content_ContentSearchModel.html │ │ ├── class_dw_content_ContentSearchRefinementDefinition.html │ │ ├── class_dw_content_ContentSearchRefinementValue.html │ │ ├── class_dw_content_ContentSearchRefinements.html │ │ ├── class_dw_content_Folder.html │ │ ├── class_dw_content_Library.html │ │ ├── class_dw_content_MarkupText.html │ │ ├── class_dw_content_MediaFile.html │ │ ├── class_dw_crypto_CertificateRef.html │ │ ├── class_dw_crypto_CertificateUtils.html │ │ ├── class_dw_crypto_Cipher.html │ │ ├── class_dw_crypto_Encoding.html │ │ ├── class_dw_crypto_JWE.html │ │ ├── class_dw_crypto_JWEHeader.html │ │ ├── class_dw_crypto_JWS.html │ │ ├── class_dw_crypto_JWSHeader.html │ │ ├── class_dw_crypto_KeyRef.html │ │ ├── class_dw_crypto_Mac.html │ │ ├── class_dw_crypto_MessageDigest.html │ │ ├── class_dw_crypto_SecureRandom.html │ │ ├── class_dw_crypto_Signature.html │ │ ├── class_dw_crypto_WeakCipher.html │ │ ├── class_dw_crypto_WeakMac.html │ │ ├── class_dw_crypto_WeakMessageDigest.html │ │ ├── class_dw_crypto_WeakSignature.html │ │ ├── class_dw_crypto_X509Certificate.html │ │ ├── class_dw_customer_AddressBook.html │ │ ├── class_dw_customer_AgentUserMgr.html │ │ ├── class_dw_customer_AgentUserStatusCodes.html │ │ ├── class_dw_customer_AuthenticationStatus.html │ │ ├── class_dw_customer_Credentials.html │ │ ├── class_dw_customer_Customer.html │ │ ├── class_dw_customer_CustomerActiveData.html │ │ ├── class_dw_customer_CustomerAddress.html │ │ ├── class_dw_customer_CustomerCDPData.html │ │ ├── class_dw_customer_CustomerContextMgr.html │ │ ├── class_dw_customer_CustomerGroup.html │ │ ├── class_dw_customer_CustomerList.html │ │ ├── class_dw_customer_CustomerMgr.html │ │ ├── class_dw_customer_CustomerPasswordConstraints.html │ │ ├── class_dw_customer_CustomerPaymentInstrument.html │ │ ├── class_dw_customer_CustomerStatusCodes.html │ │ ├── class_dw_customer_EncryptedObject.html │ │ ├── class_dw_customer_ExternalProfile.html │ │ ├── class_dw_customer_OrderHistory.html │ │ ├── class_dw_customer_ProductList.html │ │ ├── class_dw_customer_ProductListItem.html │ │ ├── class_dw_customer_ProductListItemPurchase.html │ │ ├── class_dw_customer_ProductListMgr.html │ │ ├── class_dw_customer_ProductListRegistrant.html │ │ ├── class_dw_customer_Profile.html │ │ ├── class_dw_customer_Wallet.html │ │ ├── class_dw_customer_oauth_OAuthAccessTokenResponse.html │ │ ├── class_dw_customer_oauth_OAuthFinalizedResponse.html │ │ ├── class_dw_customer_oauth_OAuthLoginFlowMgr.html │ │ ├── class_dw_customer_oauth_OAuthUserInfoResponse.html │ │ ├── class_dw_customer_shoppercontext_ShopperContext.html │ │ ├── class_dw_customer_shoppercontext_ShopperContextErrorCodes.html │ │ ├── class_dw_customer_shoppercontext_ShopperContextException.html │ │ ├── class_dw_customer_shoppercontext_ShopperContextMgr.html │ │ ├── class_dw_experience_AspectAttributeValidationException.html │ │ ├── class_dw_experience_Component.html │ │ ├── class_dw_experience_ComponentRenderSettings.html │ │ ├── class_dw_experience_ComponentScriptContext.html │ │ ├── class_dw_experience_CustomEditor.html │ │ ├── class_dw_experience_CustomEditorResources.html │ │ ├── class_dw_experience_Page.html │ │ ├── class_dw_experience_PageMgr.html │ │ ├── class_dw_experience_PageScriptContext.html │ │ ├── class_dw_experience_Region.html │ │ ├── class_dw_experience_RegionRenderSettings.html │ │ ├── class_dw_experience_cms_CMSRecord.html │ │ ├── class_dw_experience_image_FocalPoint.html │ │ ├── class_dw_experience_image_Image.html │ │ ├── class_dw_experience_image_ImageMetaData.html │ │ ├── class_dw_extensions_applepay_ApplePayHookResult.html │ │ ├── class_dw_extensions_applepay_ApplePayHooks.html │ │ ├── class_dw_extensions_facebook_FacebookFeedHooks.html │ │ ├── class_dw_extensions_facebook_FacebookProduct.html │ │ ├── class_dw_extensions_paymentapi_PaymentApiHooks.html │ │ ├── class_dw_extensions_paymentrequest_PaymentRequestHookResult.html │ │ ├── class_dw_extensions_paymentrequest_PaymentRequestHooks.html │ │ ├── class_dw_extensions_payments_SalesforceBancontactPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforceCardPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforceEpsPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforceIdealPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforceKlarnaPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforcePayPalOrder.html │ │ ├── class_dw_extensions_payments_SalesforcePayPalOrderAddress.html │ │ ├── class_dw_extensions_payments_SalesforcePayPalOrderPayer.html │ │ ├── class_dw_extensions_payments_SalesforcePayPalPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentIntent.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentMethod.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentRequest.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentsHooks.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentsMgr.html │ │ ├── class_dw_extensions_payments_SalesforcePaymentsSiteConfiguration.html │ │ ├── class_dw_extensions_payments_SalesforceSepaDebitPaymentDetails.html │ │ ├── class_dw_extensions_payments_SalesforceVenmoPaymentDetails.html │ │ ├── class_dw_extensions_pinterest_PinterestAvailability.html │ │ ├── class_dw_extensions_pinterest_PinterestFeedHooks.html │ │ ├── class_dw_extensions_pinterest_PinterestOrder.html │ │ ├── class_dw_extensions_pinterest_PinterestOrderHooks.html │ │ ├── class_dw_extensions_pinterest_PinterestProduct.html │ │ ├── class_dw_io_CSVStreamReader.html │ │ ├── class_dw_io_CSVStreamWriter.html │ │ ├── class_dw_io_File.html │ │ ├── class_dw_io_FileReader.html │ │ ├── class_dw_io_FileWriter.html │ │ ├── class_dw_io_InputStream.html │ │ ├── class_dw_io_OutputStream.html │ │ ├── class_dw_io_PrintWriter.html │ │ ├── class_dw_io_RandomAccessFileReader.html │ │ ├── class_dw_io_Reader.html │ │ ├── class_dw_io_StringWriter.html │ │ ├── class_dw_io_Writer.html │ │ ├── class_dw_io_XMLIndentingStreamWriter.html │ │ ├── class_dw_io_XMLStreamConstants.html │ │ ├── class_dw_io_XMLStreamReader.html │ │ ├── class_dw_io_XMLStreamWriter.html │ │ ├── class_dw_job_JobExecution.html │ │ ├── class_dw_job_JobStepExecution.html │ │ ├── class_dw_net_FTPClient.html │ │ ├── class_dw_net_FTPFileInfo.html │ │ ├── class_dw_net_HTTPClient.html │ │ ├── class_dw_net_HTTPClientLoggingConfig.html │ │ ├── class_dw_net_HTTPRequestPart.html │ │ ├── class_dw_net_Mail.html │ │ ├── class_dw_net_SFTPClient.html │ │ ├── class_dw_net_SFTPFileInfo.html │ │ ├── class_dw_net_WebDAVClient.html │ │ ├── class_dw_net_WebDAVFileInfo.html │ │ ├── class_dw_object_ActiveData.html │ │ ├── class_dw_object_CustomAttributes.html │ │ ├── class_dw_object_CustomObject.html │ │ ├── class_dw_object_CustomObjectMgr.html │ │ ├── class_dw_object_Extensible.html │ │ ├── class_dw_object_ExtensibleObject.html │ │ ├── class_dw_object_Note.html │ │ ├── class_dw_object_ObjectAttributeDefinition.html │ │ ├── class_dw_object_ObjectAttributeGroup.html │ │ ├── class_dw_object_ObjectAttributeValueDefinition.html │ │ ├── class_dw_object_ObjectTypeDefinition.html │ │ ├── class_dw_object_PersistentObject.html │ │ ├── class_dw_object_SimpleExtensible.html │ │ ├── class_dw_object_SystemObjectMgr.html │ │ ├── class_dw_order_AbstractItem.html │ │ ├── class_dw_order_AbstractItemCtnr.html │ │ ├── class_dw_order_Appeasement.html │ │ ├── class_dw_order_AppeasementItem.html │ │ ├── class_dw_order_Basket.html │ │ ├── class_dw_order_BasketMgr.html │ │ ├── class_dw_order_BonusDiscountLineItem.html │ │ ├── class_dw_order_CouponLineItem.html │ │ ├── class_dw_order_CreateAgentBasketLimitExceededException.html │ │ ├── class_dw_order_CreateBasketFromOrderException.html │ │ ├── class_dw_order_CreateCouponLineItemException.html │ │ ├── class_dw_order_CreateOrderException.html │ │ ├── class_dw_order_CreateTemporaryBasketLimitExceededException.html │ │ ├── class_dw_order_GiftCertificate.html │ │ ├── class_dw_order_GiftCertificateLineItem.html │ │ ├── class_dw_order_GiftCertificateMgr.html │ │ ├── class_dw_order_GiftCertificateStatusCodes.html │ │ ├── class_dw_order_Invoice.html │ │ ├── class_dw_order_InvoiceItem.html │ │ ├── class_dw_order_LineItem.html │ │ ├── class_dw_order_LineItemCtnr.html │ │ ├── class_dw_order_Order.html │ │ ├── class_dw_order_OrderAddress.html │ │ ├── class_dw_order_OrderItem.html │ │ ├── class_dw_order_OrderMgr.html │ │ ├── class_dw_order_OrderPaymentInstrument.html │ │ ├── class_dw_order_OrderProcessStatusCodes.html │ │ ├── class_dw_order_PaymentCard.html │ │ ├── class_dw_order_PaymentInstrument.html │ │ ├── class_dw_order_PaymentMethod.html │ │ ├── class_dw_order_PaymentMgr.html │ │ ├── class_dw_order_PaymentProcessor.html │ │ ├── class_dw_order_PaymentStatusCodes.html │ │ ├── class_dw_order_PaymentTransaction.html │ │ ├── class_dw_order_PriceAdjustment.html │ │ ├── class_dw_order_PriceAdjustmentLimitTypes.html │ │ ├── class_dw_order_ProductLineItem.html │ │ ├── class_dw_order_ProductShippingCost.html │ │ ├── class_dw_order_ProductShippingLineItem.html │ │ ├── class_dw_order_ProductShippingModel.html │ │ ├── class_dw_order_Return.html │ │ ├── class_dw_order_ReturnCase.html │ │ ├── class_dw_order_ReturnCaseItem.html │ │ ├── class_dw_order_ReturnItem.html │ │ ├── class_dw_order_Shipment.html │ │ ├── class_dw_order_ShipmentShippingCost.html │ │ ├── class_dw_order_ShipmentShippingModel.html │ │ ├── class_dw_order_ShippingLineItem.html │ │ ├── class_dw_order_ShippingLocation.html │ │ ├── class_dw_order_ShippingMethod.html │ │ ├── class_dw_order_ShippingMgr.html │ │ ├── class_dw_order_ShippingOrder.html │ │ ├── class_dw_order_ShippingOrderItem.html │ │ ├── class_dw_order_SumItem.html │ │ ├── class_dw_order_TaxGroup.html │ │ ├── class_dw_order_TaxItem.html │ │ ├── class_dw_order_TaxMgr.html │ │ ├── class_dw_order_TrackingInfo.html │ │ ├── class_dw_order_TrackingRef.html │ │ ├── class_dw_order_hooks_BasketMergeHooks.html │ │ ├── class_dw_order_hooks_CalculateHooks.html │ │ ├── class_dw_order_hooks_OrderHooks.html │ │ ├── class_dw_order_hooks_PaymentHooks.html │ │ ├── class_dw_order_hooks_ReturnHooks.html │ │ ├── class_dw_order_hooks_ShippingOrderHooks.html │ │ ├── class_dw_rpc_SOAPUtil.html │ │ ├── class_dw_rpc_Stub.html │ │ ├── class_dw_rpc_WebReference.html │ │ ├── class_dw_sitemap_SitemapFile.html │ │ ├── class_dw_sitemap_SitemapMgr.html │ │ ├── class_dw_suggest_BrandSuggestions.html │ │ ├── class_dw_suggest_CategorySuggestions.html │ │ ├── class_dw_suggest_ContentSuggestions.html │ │ ├── class_dw_suggest_CustomSuggestions.html │ │ ├── class_dw_suggest_ProductSuggestions.html │ │ ├── class_dw_suggest_SearchPhraseSuggestions.html │ │ ├── class_dw_suggest_SuggestModel.html │ │ ├── class_dw_suggest_SuggestedCategory.html │ │ ├── class_dw_suggest_SuggestedContent.html │ │ ├── class_dw_suggest_SuggestedPhrase.html │ │ ├── class_dw_suggest_SuggestedProduct.html │ │ ├── class_dw_suggest_SuggestedTerm.html │ │ ├── class_dw_suggest_SuggestedTerms.html │ │ ├── class_dw_suggest_Suggestions.html │ │ ├── class_dw_svc_FTPService.html │ │ ├── class_dw_svc_FTPServiceDefinition.html │ │ ├── class_dw_svc_HTTPFormService.html │ │ ├── class_dw_svc_HTTPFormServiceDefinition.html │ │ ├── class_dw_svc_HTTPService.html │ │ ├── class_dw_svc_HTTPServiceDefinition.html │ │ ├── class_dw_svc_LocalServiceRegistry.html │ │ ├── class_dw_svc_Result.html │ │ ├── class_dw_svc_SOAPService.html │ │ ├── class_dw_svc_SOAPServiceDefinition.html │ │ ├── class_dw_svc_Service.html │ │ ├── class_dw_svc_ServiceCallback.html │ │ ├── class_dw_svc_ServiceConfig.html │ │ ├── class_dw_svc_ServiceCredential.html │ │ ├── class_dw_svc_ServiceDefinition.html │ │ ├── class_dw_svc_ServiceProfile.html │ │ ├── class_dw_svc_ServiceRegistry.html │ │ ├── class_dw_system_AgentUserStatusCodes.html │ │ ├── class_dw_system_Cache.html │ │ ├── class_dw_system_CacheMgr.html │ │ ├── class_dw_system_HookMgr.html │ │ ├── class_dw_system_InternalObject.html │ │ ├── class_dw_system_JobProcessMonitor.html │ │ ├── class_dw_system_Log.html │ │ ├── class_dw_system_LogNDC.html │ │ ├── class_dw_system_Logger.html │ │ ├── class_dw_system_OrganizationPreferences.html │ │ ├── class_dw_system_Pipeline.html │ │ ├── class_dw_system_PipelineDictionary.html │ │ ├── class_dw_system_RESTErrorResponse.html │ │ ├── class_dw_system_RESTResponseMgr.html │ │ ├── class_dw_system_RESTSuccessResponse.html │ │ ├── class_dw_system_RemoteInclude.html │ │ ├── class_dw_system_Request.html │ │ ├── class_dw_system_RequestHooks.html │ │ ├── class_dw_system_Response.html │ │ ├── class_dw_system_SearchStatus.html │ │ ├── class_dw_system_Session.html │ │ ├── class_dw_system_Site.html │ │ ├── class_dw_system_SitePreferences.html │ │ ├── class_dw_system_Status.html │ │ ├── class_dw_system_StatusItem.html │ │ ├── class_dw_system_System.html │ │ ├── class_dw_system_Transaction.html │ │ ├── class_dw_template_ISML.html │ │ ├── class_dw_template_Velocity.html │ │ ├── class_dw_util_ArrayList.html │ │ ├── class_dw_util_Assert.html │ │ ├── class_dw_util_BigInteger.html │ │ ├── class_dw_util_Bytes.html │ │ ├── class_dw_util_Calendar.html │ │ ├── class_dw_util_Collection.html │ │ ├── class_dw_util_Currency.html │ │ ├── class_dw_util_DateUtils.html │ │ ├── class_dw_util_Decimal.html │ │ ├── class_dw_util_FilteringCollection.html │ │ ├── class_dw_util_Geolocation.html │ │ ├── class_dw_util_HashMap.html │ │ ├── class_dw_util_HashSet.html │ │ ├── class_dw_util_Iterator.html │ │ ├── class_dw_util_LinkedHashMap.html │ │ ├── class_dw_util_LinkedHashSet.html │ │ ├── class_dw_util_List.html │ │ ├── class_dw_util_Locale.html │ │ ├── class_dw_util_Map.html │ │ ├── class_dw_util_MapEntry.html │ │ ├── class_dw_util_MappingKey.html │ │ ├── class_dw_util_MappingMgr.html │ │ ├── class_dw_util_PropertyComparator.html │ │ ├── class_dw_util_SecureEncoder.html │ │ ├── class_dw_util_SecureFilter.html │ │ ├── class_dw_util_SeekableIterator.html │ │ ├── class_dw_util_Set.html │ │ ├── class_dw_util_SortedMap.html │ │ ├── class_dw_util_SortedSet.html │ │ ├── class_dw_util_StringUtils.html │ │ ├── class_dw_util_Template.html │ │ ├── class_dw_util_UUIDUtils.html │ │ ├── class_dw_value_EnumValue.html │ │ ├── class_dw_value_MimeEncodedText.html │ │ ├── class_dw_value_Money.html │ │ ├── class_dw_value_Quantity.html │ │ ├── class_dw_web_CSRFProtection.html │ │ ├── class_dw_web_ClickStream.html │ │ ├── class_dw_web_ClickStreamEntry.html │ │ ├── class_dw_web_Cookie.html │ │ ├── class_dw_web_Cookies.html │ │ ├── class_dw_web_Form.html │ │ ├── class_dw_web_FormAction.html │ │ ├── class_dw_web_FormElement.html │ │ ├── class_dw_web_FormElementValidationResult.html │ │ ├── class_dw_web_FormField.html │ │ ├── class_dw_web_FormFieldOption.html │ │ ├── class_dw_web_FormFieldOptions.html │ │ ├── class_dw_web_FormGroup.html │ │ ├── class_dw_web_FormList.html │ │ ├── class_dw_web_FormListItem.html │ │ ├── class_dw_web_Forms.html │ │ ├── class_dw_web_HttpParameter.html │ │ ├── class_dw_web_HttpParameterMap.html │ │ ├── class_dw_web_LoopIterator.html │ │ ├── class_dw_web_PageMetaData.html │ │ ├── class_dw_web_PageMetaTag.html │ │ ├── class_dw_web_PagingModel.html │ │ ├── class_dw_web_Resource.html │ │ ├── class_dw_web_URL.html │ │ ├── class_dw_web_URLAction.html │ │ ├── class_dw_web_URLParameter.html │ │ ├── class_dw_web_URLRedirect.html │ │ ├── class_dw_web_URLRedirectMgr.html │ │ ├── class_dw_web_URLUtils.html │ │ ├── class_dw_ws_Port.html │ │ ├── class_dw_ws_WSUtil.html │ │ ├── class_dw_ws_WebReference2.html │ │ ├── images │ │ │ ├── dwscriptlarge.gif │ │ │ ├── error.gif │ │ │ ├── icon-api_16.png │ │ │ ├── info.gif │ │ │ ├── inherit.gif │ │ │ └── warning.gif │ │ ├── js │ │ │ └── dwapi.js │ │ ├── overview.html │ │ ├── packageList.html │ │ ├── package_TopLevel.html │ │ ├── package_dw_alert.html │ │ ├── package_dw_campaign.html │ │ ├── package_dw_catalog.html │ │ ├── package_dw_content.html │ │ ├── package_dw_crypto.html │ │ ├── package_dw_customer.html │ │ ├── package_dw_customer_oauth.html │ │ ├── package_dw_customer_shoppercontext.html │ │ ├── package_dw_experience.html │ │ ├── package_dw_experience_cms.html │ │ ├── package_dw_experience_image.html │ │ ├── package_dw_extensions_applepay.html │ │ ├── package_dw_extensions_facebook.html │ │ ├── package_dw_extensions_paymentapi.html │ │ ├── package_dw_extensions_paymentrequest.html │ │ ├── package_dw_extensions_payments.html │ │ ├── package_dw_extensions_pinterest.html │ │ ├── package_dw_io.html │ │ ├── package_dw_job.html │ │ ├── package_dw_net.html │ │ ├── package_dw_object.html │ │ ├── package_dw_order.html │ │ ├── package_dw_order_hooks.html │ │ ├── package_dw_rpc.html │ │ ├── package_dw_sitemap.html │ │ ├── package_dw_suggest.html │ │ ├── package_dw_svc.html │ │ ├── package_dw_system.html │ │ ├── package_dw_template.html │ │ ├── package_dw_util.html │ │ ├── package_dw_value.html │ │ ├── package_dw_web.html │ │ ├── package_dw_ws.html │ │ └── styles │ │ │ └── javadoc.css │ │ └── index.html └── xsd │ ├── abtest.xsd │ ├── abtestparticipants.xsd │ ├── assignment.xsd │ ├── bmext.xsd │ ├── cachesettings.xsd │ ├── catalog.xsd │ ├── coupon.xsd │ ├── couponredemption.xsd │ ├── csrfwhitelists.xsd │ ├── customer.xsd │ ├── customeractivedata.xsd │ ├── customercdnsettings.xsd │ ├── customergroup.xsd │ ├── customerlist.xsd │ ├── customerlist2.xsd │ ├── customerpaymentinstrument.xsd │ ├── customobject.xsd │ ├── dcext.xsd │ ├── feed.xsd │ ├── form.xsd │ ├── geolocation.xsd │ ├── giftcertificate.xsd │ ├── inventory.xsd │ ├── jobs.xsd │ ├── library.xsd │ ├── locales.xsd │ ├── metadata.xsd │ ├── oauth.xsd │ ├── order.xsd │ ├── pagemetatag.xsd │ ├── paymentmethod.xsd │ ├── paymentprocessor.xsd │ ├── preferences.xsd │ ├── priceadjustmentlimits.xsd │ ├── pricebook.xsd │ ├── productlist.xsd │ ├── promotion.xsd │ ├── redirecturl.xsd │ ├── returnimportfeed.xsd │ ├── schedules.xsd │ ├── search.xsd │ ├── search2.xsd │ ├── services.xsd │ ├── shipping.xsd │ ├── shippingorderupdatefeed.xsd │ ├── site.xsd │ ├── sitemapconfiguration.xsd │ ├── slot.xsd │ ├── sort.xsd │ ├── sourcecode.xsd │ ├── store.xsd │ ├── tax.xsd │ ├── urlrules.xsd │ └── xml.xsd ├── guides └── hooks.md ├── guidetemplate.html ├── isml ├── isactivedatacontext.html └── isif.html ├── ocapi ├── .DS_Store ├── APIExplorer.html ├── BatchRequests.html ├── BestPractices.html ├── CORS.html ├── Caching.html ├── ClientApplicationIdentification.html ├── CustomProperties.html ├── Customization.html ├── DataFormats.html ├── Exceptions.html ├── Expansions.html ├── Filtering.html ├── Flash.html ├── HookCircuitBreaker.html ├── Hooks.html ├── HttpHeaders.html ├── HttpMethods.html ├── HttpStatusCodesAndFaults.html ├── Images.html ├── JSONP.html ├── JWT.html ├── Localization.html ├── Metadata.html ├── OAuth.html ├── OCAPISettings.html ├── OptimisticLocking.html ├── Pagination.html ├── PropertySelection.html ├── ResourceStates.html ├── SessionBridge.html ├── SystemJobs.html ├── UrlSchema.html ├── VersioningAndDeprecationPolicy.html ├── data │ ├── Documents │ │ ├── AbTest.html │ │ ├── AbTestGroup.html │ │ ├── AbTestSearchResult.html │ │ ├── AbTestSegment.html │ │ ├── AbTestSegmentStats.html │ │ ├── AbTestTrigger.html │ │ ├── AbTests.html │ │ ├── AccessKeyDetails.html │ │ ├── AccessKeyUpdateRequest.html │ │ ├── AccountTransaction.html │ │ ├── AlertDescriptor.html │ │ ├── AlertDescriptorSettings.html │ │ ├── AlertDescriptors.html │ │ ├── AlertDescriptorsRevalidationRequest.html │ │ ├── AlertItem.html │ │ ├── AlertItems.html │ │ ├── AlertSettings.html │ │ ├── ApplicationPermissions.html │ │ ├── AssignedExperiences.html │ │ ├── AssignedQualifiers.html │ │ ├── Assignment.html │ │ ├── BMPermissions.html │ │ ├── BoolFilter.html │ │ ├── BoolQuery.html │ │ ├── CSCPermissions.html │ │ ├── Campaign.html │ │ ├── CampaignPromotionExperience.html │ │ ├── CampaignSearchResult.html │ │ ├── CampaignSlotConfigurationExperience.html │ │ ├── CampaignSortingRuleExperience.html │ │ ├── Campaigns.html │ │ ├── CartridgePathAddRequest.html │ │ ├── CartridgePathApiResponse.html │ │ ├── CartridgePathCreateRequest.html │ │ ├── Catalog.html │ │ ├── CatalogCategoryId.html │ │ ├── CatalogSearchResult.html │ │ ├── Catalogs.html │ │ ├── Categories.html │ │ ├── Category.html │ │ ├── CategoryLink.html │ │ ├── CategoryLinks.html │ │ ├── CategoryProductAssignment.html │ │ ├── CategoryProductAssignmentSearchRequest.html │ │ ├── CategoryProductAssignmentSearchResult.html │ │ ├── CategorySearchResult.html │ │ ├── CodeVersion.html │ │ ├── CodeVersionResult.html │ │ ├── ContentAsset.html │ │ ├── ContentAssetResult.html │ │ ├── ContentFolder.html │ │ ├── ContentFolderAssignment.html │ │ ├── ContentFolderResult.html │ │ ├── ContentSubFolderResult.html │ │ ├── Coupon.html │ │ ├── CouponCode.html │ │ ├── CouponCodes.html │ │ ├── CouponMultiCodesRequest.html │ │ ├── CouponRedemption.html │ │ ├── CouponRedemptionSearchResult.html │ │ ├── CouponSearchResult.html │ │ ├── CouponSystemCodeConfig.html │ │ ├── Coupons.html │ │ ├── Credentials.html │ │ ├── CustomLogSettings.html │ │ ├── CustomObject.html │ │ ├── CustomObjectSearchResult.html │ │ ├── Customer.html │ │ ├── CustomerAddress.html │ │ ├── CustomerAddressResult.html │ │ ├── CustomerGroup.html │ │ ├── CustomerGroupMember.html │ │ ├── CustomerGroupMemberResult.html │ │ ├── CustomerGroupMemberSearchResult.html │ │ ├── CustomerGroupMembers.html │ │ ├── CustomerGroupResult.html │ │ ├── CustomerGroupSearchResult.html │ │ ├── CustomerGroups.html │ │ ├── CustomerList.html │ │ ├── CustomerListLink.html │ │ ├── CustomerSearchHit.html │ │ ├── CustomerSearchRequest.html │ │ ├── CustomerSearchResult.html │ │ ├── EcdnLogFetchRequest.html │ │ ├── EcdnLogFetchResponse.html │ │ ├── ExportDataUnitsConfiguration.html │ │ ├── ExportGlobalDataConfiguration.html │ │ ├── ExportSitesConfiguration.html │ │ ├── Fault.html │ │ ├── Filter.html │ │ ├── FilteredQuery.html │ │ ├── Flash.html │ │ ├── FunctionalPermission.html │ │ ├── FunctionalPermissions.html │ │ ├── GiftCertificate.html │ │ ├── GiftCertificateSearchResult.html │ │ ├── GiftCertificates.html │ │ ├── ImageGroup.html │ │ ├── InventoryList.html │ │ ├── InventoryListSearchResult.html │ │ ├── InventoryLists.html │ │ ├── JobExecution.html │ │ ├── JobExecutionContinueInformation.html │ │ ├── JobExecutionParameter.html │ │ ├── JobExecutionRequest.html │ │ ├── JobExecutionResult.html │ │ ├── JobExecutionRetryInformation.html │ │ ├── JobExecutionSearchResult.html │ │ ├── JobStepExecution.html │ │ ├── Locale.html │ │ ├── LocalePermission.html │ │ ├── LocalePermissions.html │ │ ├── LocaleResult.html │ │ ├── LogCategory.html │ │ ├── MarkupText.html │ │ ├── Master.html │ │ ├── MatchAllQuery.html │ │ ├── MediaFile.html │ │ ├── MenuAction.html │ │ ├── MenuItem.html │ │ ├── MetricResponse.html │ │ ├── ModulePermissions.html │ │ ├── Money.html │ │ ├── NestedQuery.html │ │ ├── ObjectAttributeDefinition.html │ │ ├── ObjectAttributeDefinitionSearchResult.html │ │ ├── ObjectAttributeDefinitions.html │ │ ├── ObjectAttributeGroup.html │ │ ├── ObjectAttributeGroupSearchResult.html │ │ ├── ObjectAttributeGroups.html │ │ ├── ObjectAttributeValueDefinition.html │ │ ├── ObjectTypeDefinition.html │ │ ├── ObjectTypeDefinitionSearchResult.html │ │ ├── ObjectTypeDefinitions.html │ │ ├── OcapiConfigsApiRequest.html │ │ ├── OcapiConfigsApiResponse.html │ │ ├── OrderConfirmationStatusUpdateRequest.html │ │ ├── OrderExportStatusUpdateRequest.html │ │ ├── OrderExternalStatusUpdateRequest.html │ │ ├── OrderPaymentStatusUpdateRequest.html │ │ ├── OrderShippingStatusUpdateRequest.html │ │ ├── OrderStatusUpdateRequest.html │ │ ├── OrderUpdateRequest.html │ │ ├── OrganizationPreferences.html │ │ ├── PasswordChangeRequest.html │ │ ├── PathRecord.html │ │ ├── PaymentInstrumentUpdateRequest.html │ │ ├── PaymentTransactionUpdateRequest.html │ │ ├── PreferenceValue.html │ │ ├── PreferenceValueSearchResult.html │ │ ├── Product.html │ │ ├── ProductInventoryRecord.html │ │ ├── ProductInventoryRecordAllocation.html │ │ ├── ProductInventoryRecords.html │ │ ├── ProductOption.html │ │ ├── ProductOptionValue.html │ │ ├── ProductOptionValues.html │ │ ├── ProductOptions.html │ │ ├── ProductSearchResult.html │ │ ├── ProductType.html │ │ ├── Promotion.html │ │ ├── PromotionABTestGroupAssignment.html │ │ ├── PromotionAssignmentInformation.html │ │ ├── PromotionCampaignAssignment.html │ │ ├── PromotionCampaignAssignmentSearchResult.html │ │ ├── PromotionSearchResult.html │ │ ├── Promotions.html │ │ ├── Query.html │ │ ├── QueryFilter.html │ │ ├── Range2Filter.html │ │ ├── RangeFilter.html │ │ ├── Recommender.html │ │ ├── RecommendersResult.html │ │ ├── Recurrence.html │ │ ├── RedemptionLimitPerPeriod.html │ │ ├── RedemptionLimits.html │ │ ├── ResourceInfo.html │ │ ├── ResourceObject.html │ │ ├── ResultPage.html │ │ ├── Role.html │ │ ├── RoleFunctionalPermission.html │ │ ├── RoleFunctionalPermissions.html │ │ ├── RoleLocalePermission.html │ │ ├── RoleLocalePermissions.html │ │ ├── RoleModulePermission.html │ │ ├── RoleModulePermissions.html │ │ ├── RolePermissions.html │ │ ├── RoleSearchRequest.html │ │ ├── RoleSearchResult.html │ │ ├── RoleWebdavPermission.html │ │ ├── RoleWebdavPermissions.html │ │ ├── Roles.html │ │ ├── Rule.html │ │ ├── Schedule.html │ │ ├── SearchIndexUpdateConfiguration.html │ │ ├── SearchRequest.html │ │ ├── SearchResult.html │ │ ├── ShippingAddressUpdateRequest.html │ │ ├── Site.html │ │ ├── SiteArchiveExportConfiguration.html │ │ ├── SiteArchiveImportConfiguration.html │ │ ├── SitePreferences.html │ │ ├── SiteResourceInfo.html │ │ ├── SiteSearchResult.html │ │ ├── Sites.html │ │ ├── Slot.html │ │ ├── SlotConfiguration.html │ │ ├── SlotConfigurationABTestGroupAssignment.html │ │ ├── SlotConfigurationAssignmentInformation.html │ │ ├── SlotConfigurationCampaignAssignment.html │ │ ├── SlotConfigurationCampaignAssignmentSearchResult.html │ │ ├── SlotConfigurationSearchResult.html │ │ ├── SlotConfigurations.html │ │ ├── SlotContent.html │ │ ├── SlotSearchResult.html │ │ ├── Slots.html │ │ ├── Sort.html │ │ ├── SortingRule.html │ │ ├── SortingRuleSearchResult.html │ │ ├── SortingRuleStep.html │ │ ├── SourceCodeGroup.html │ │ ├── SourceCodeGroupSearchResult.html │ │ ├── SourceCodeGroups.html │ │ ├── SourceCodeRedirectInfo.html │ │ ├── SourceCodeSpecification.html │ │ ├── Status.html │ │ ├── StatusMetadata.html │ │ ├── Store.html │ │ ├── StoreSearchResult.html │ │ ├── Stores.html │ │ ├── Tag.html │ │ ├── TermFilter.html │ │ ├── TermQuery.html │ │ ├── TextQuery.html │ │ ├── TimeOfDay.html │ │ ├── User.html │ │ ├── UserSearchResult.html │ │ ├── Users.html │ │ ├── Variant.html │ │ ├── VariantSearchResult.html │ │ ├── Variants.html │ │ ├── VariationAttribute.html │ │ ├── VariationAttributeValue.html │ │ ├── VariationAttributeValues.html │ │ ├── VariationAttributes.html │ │ ├── VariationGroup.html │ │ ├── VariationGroups.html │ │ ├── VersionRangeObject.html │ │ ├── VersioningAndDeprecationPolicy.html │ │ ├── WebdavPermission.html │ │ └── WebdavPermissions.html │ └── Resources │ │ ├── AbTestSearch.html │ │ ├── AbTests.html │ │ ├── Alerts.html │ │ ├── CampaignSearch.html │ │ ├── Campaigns.html │ │ ├── CatalogSearch.html │ │ ├── Catalogs.html │ │ ├── Categories.html │ │ ├── CategoryLinks.html │ │ ├── CategoryProductAssignmentSearch.html │ │ ├── CategorySearch.html │ │ ├── CodeVersions.html │ │ ├── CouponRedemptionSearch.html │ │ ├── CouponSearch.html │ │ ├── Coupons.html │ │ ├── CustomObjectDefinitions.html │ │ ├── CustomObjects.html │ │ ├── CustomObjectsSearch.html │ │ ├── CustomerGroupSearch.html │ │ ├── CustomerGroups.html │ │ ├── CustomerLists.html │ │ ├── GiftCertificateSearch.html │ │ ├── GiftCertificates.html │ │ ├── GlobalPreferences.html │ │ ├── InventoryListSearch.html │ │ ├── InventoryLists.html │ │ ├── JobExecutionSearch.html │ │ ├── Jobs.html │ │ ├── Libraries.html │ │ ├── LocaleInfo.html │ │ ├── LogRequests.html │ │ ├── Metrics.html │ │ ├── OcapiConfigs.html │ │ ├── Permissions.html │ │ ├── ProductInventoryRecords.html │ │ ├── ProductSearch.html │ │ ├── Products.html │ │ ├── PromotionCampaignAssignmentSearch.html │ │ ├── PromotionSearch.html │ │ ├── Promotions.html │ │ ├── RoleSearch.html │ │ ├── Roles.html │ │ ├── Settings.html │ │ ├── SitePreferences.html │ │ ├── SiteSearch.html │ │ ├── Sites.html │ │ ├── SlotConfigurationCampaignAssignmentSearch.html │ │ ├── SlotConfigurationSearch.html │ │ ├── SlotConfigurations.html │ │ ├── SlotSearch.html │ │ ├── Slots.html │ │ ├── SortingRuleSearch.html │ │ ├── SourceCodeGroupSearch.html │ │ ├── SourceCodeGroups.html │ │ ├── StoreSearch.html │ │ ├── Stores.html │ │ ├── SystemObjectDefinitionSearch.html │ │ ├── SystemObjectDefinitions.html │ │ ├── UserSearch.html │ │ ├── Users.html │ │ ├── VariantSearch.html │ │ └── VersioningAndDeprecationPolicy.html └── shop │ ├── .DS_Store │ ├── Documents │ ├── ApproachingDiscount.html │ ├── ApproachingDiscountResult.html │ ├── AuthRequest.html │ ├── Basket.html │ ├── BasketCreateRequest.html │ ├── BasketPaymentInstrumentRequest.html │ ├── BasketReference.html │ ├── BasketsResult.html │ ├── BonusDiscountLineItem.html │ ├── BundledProduct.html │ ├── BundledProductItem.html │ ├── Category.html │ ├── CategoryResult.html │ ├── Content.html │ ├── ContentFolder.html │ ├── ContentFolderResult.html │ ├── ContentResult.html │ ├── ContentSearchRefinement.html │ ├── ContentSearchRefinementValue.html │ ├── ContentSearchResult.html │ ├── CouponItem.html │ ├── CustomObject.html │ ├── Customer.html │ ├── CustomerAddress.html │ ├── CustomerAddressLink.html │ ├── CustomerAddressResult.html │ ├── CustomerInfo.html │ ├── CustomerOrderResult.html │ ├── CustomerPaymentCardRequest.html │ ├── CustomerPaymentInstrument.html │ ├── CustomerPaymentInstrumentRequest.html │ ├── CustomerPaymentInstrumentResult.html │ ├── CustomerProductList.html │ ├── CustomerProductListItem.html │ ├── CustomerProductListItemLink.html │ ├── CustomerProductListItemPurchase.html │ ├── CustomerProductListItemPurchaseResult.html │ ├── CustomerProductListItemResult.html │ ├── CustomerProductListRegistrant.html │ ├── CustomerProductListResult.html │ ├── CustomerRegistration.html │ ├── CustomersExtProfile.html │ ├── Discount.html │ ├── DiscountRequest.html │ ├── Fault.html │ ├── Flash.html │ ├── GiftCertificate.html │ ├── GiftCertificateItem.html │ ├── GiftCertificateRequest.html │ ├── GroupedTax.html │ ├── Image.html │ ├── ImageGroup.html │ ├── Inventory.html │ ├── ItemKey.html │ ├── Locale.html │ ├── Master.html │ ├── Note.html │ ├── NotesResult.html │ ├── Option.html │ ├── OptionItem.html │ ├── OptionValue.html │ ├── Order.html │ ├── OrderAddress.html │ ├── OrderPaymentCardRequest.html │ ├── OrderPaymentInstrument.html │ ├── OrderPaymentInstrumentRequest.html │ ├── OrderSearchHit.html │ ├── OrderSearchRequest.html │ ├── OrderSearchResult.html │ ├── PasswordChangeRequest.html │ ├── PasswordReset.html │ ├── PathRecord.html │ ├── PaymentBankAccount.html │ ├── PaymentBankAccountRequest.html │ ├── PaymentCard.html │ ├── PaymentCardRequest.html │ ├── PaymentCardSpec.html │ ├── PaymentMethod.html │ ├── PaymentMethodResult.html │ ├── PriceAdjustment.html │ ├── PriceAdjustmentLimit.html │ ├── PriceAdjustmentLimits.html │ ├── PriceAdjustmentRequest.html │ ├── Product.html │ ├── ProductDetailsLink.html │ ├── ProductItem.html │ ├── ProductLink.html │ ├── ProductListEvent.html │ ├── ProductListItem.html │ ├── ProductListItemReference.html │ ├── ProductListLink.html │ ├── ProductListRegistrant.html │ ├── ProductListShippingAddress.html │ ├── ProductPromotion.html │ ├── ProductRecommendationsResult.html │ ├── ProductRef.html │ ├── ProductResult.html │ ├── ProductSearchHit.html │ ├── ProductSearchRefinement.html │ ├── ProductSearchRefinementValue.html │ ├── ProductSearchResult.html │ ├── ProductSearchSortingOption.html │ ├── ProductSimpleLink.html │ ├── ProductType.html │ ├── Promotion.html │ ├── PromotionLink.html │ ├── PromotionResult.html │ ├── PublicProductList.html │ ├── PublicProductListItem.html │ ├── PublicProductListItemResult.html │ ├── PublicProductListLink.html │ ├── PublicProductListResult.html │ ├── Recommendation.html │ ├── RecommendationType.html │ ├── Shipment.html │ ├── ShippingItem.html │ ├── ShippingMethod.html │ ├── ShippingMethodResult.html │ ├── ShippingPromotion.html │ ├── SimpleLink.html │ ├── Site.html │ ├── SortField.html │ ├── Status.html │ ├── Store.html │ ├── StoreResult.html │ ├── SuggestedCategory.html │ ├── SuggestedContent.html │ ├── SuggestedPhrase.html │ ├── SuggestedProduct.html │ ├── SuggestedTerm.html │ ├── SuggestedTerms.html │ ├── Suggestion.html │ ├── SuggestionResult.html │ ├── TrustedSystemAuthRequest.html │ ├── Variant.html │ ├── VariationAttribute.html │ ├── VariationAttributeValue.html │ ├── VariationGroup.html │ └── VersioningAndDeprecationPolicy.html │ └── Resources │ ├── Baskets.html │ ├── Categories.html │ ├── Content.html │ ├── ContentSearch.html │ ├── CustomObjects.html │ ├── Customers.html │ ├── Folders.html │ ├── GiftCertificate.html │ ├── OrderSearch.html │ ├── Orders.html │ ├── PriceAdjustmentLimits.html │ ├── ProductLists.html │ ├── ProductSearch.html │ ├── Products.html │ ├── Promotions.html │ ├── SearchSuggestion.html │ ├── Sessions.html │ ├── Site.html │ ├── Stores.html │ └── VersioningAndDeprecationPolicy.html ├── pyproject.toml ├── schematemplate.html ├── screen.png ├── screen2.png └── uv.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .env/ 2 | *.zip 3 | SFCC_API.docset/ 4 | .idea/ -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/README.md -------------------------------------------------------------------------------- /SFCC_API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/SFCC_API.xml -------------------------------------------------------------------------------- /api_to_dash_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/api_to_dash_doc.py -------------------------------------------------------------------------------- /code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/code.css -------------------------------------------------------------------------------- /docs/compareapi/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/index.html -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/images/error.gif -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/images/icon-api_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/images/icon-api_16.png -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/images/info.gif -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/images/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/images/inherit.gif -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/images/warning.gif -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/js/dwapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/js/dwapi.js -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/overview.html -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/styles/javadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/styles/javadoc.css -------------------------------------------------------------------------------- /docs/compareapi/html/whatsnew/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/compareapi/html/whatsnew/toc.html -------------------------------------------------------------------------------- /docs/content/aspecttype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/aspecttype.json -------------------------------------------------------------------------------- /docs/content/attributedefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/attributedefinition.json -------------------------------------------------------------------------------- /docs/content/attributedefinitiongroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/attributedefinitiongroup.json -------------------------------------------------------------------------------- /docs/content/cmsrecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/cmsrecord.json -------------------------------------------------------------------------------- /docs/content/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/common.json -------------------------------------------------------------------------------- /docs/content/componentconstructor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/componentconstructor.json -------------------------------------------------------------------------------- /docs/content/componenttype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/componenttype.json -------------------------------------------------------------------------------- /docs/content/componenttypeexclusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/componenttypeexclusion.json -------------------------------------------------------------------------------- /docs/content/componenttypeinclusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/componenttypeinclusion.json -------------------------------------------------------------------------------- /docs/content/contentassetcomponentconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/contentassetcomponentconfig.json -------------------------------------------------------------------------------- /docs/content/contentassetpageconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/contentassetpageconfig.json -------------------------------------------------------------------------------- /docs/content/contentassetstructuredcontentdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/contentassetstructuredcontentdata.json -------------------------------------------------------------------------------- /docs/content/customeditortype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/customeditortype.json -------------------------------------------------------------------------------- /docs/content/editordefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/editordefinition.json -------------------------------------------------------------------------------- /docs/content/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/image.json -------------------------------------------------------------------------------- /docs/content/pagetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/pagetype.json -------------------------------------------------------------------------------- /docs/content/regiondefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/regiondefinition.json -------------------------------------------------------------------------------- /docs/content/visibilityrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/content/visibilityrule.json -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/images/dwscriptlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/images/dwscriptlarge.gif -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/images/error.gif -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/images/icon-api_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/images/icon-api_16.png -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/images/info.gif -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/images/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/images/inherit.gif -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/images/warning.gif -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobStepList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobStepList.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.CreateSitemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.CreateSitemap.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportABTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportABTests.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportCatalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportCatalog.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportContent.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportCoupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportCoupons.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportMetaData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportMetaData.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportOrders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportOrders.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportStores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportStores.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ExportTaxTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ExportTaxTable.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ImportABTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ImportABTests.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ImportCatalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ImportCatalog.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ImportContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ImportContent.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ImportCoupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ImportCoupons.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ImportStores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ImportStores.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.ImportTaxTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.ImportTaxTable.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.SearchReindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.SearchReindex.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/jobstep.SiteExport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/jobstep.SiteExport.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/js/dwapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/js/dwapi.js -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/overview.html -------------------------------------------------------------------------------- /docs/jobstepapi/html/api/styles/javadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/api/styles/javadoc.css -------------------------------------------------------------------------------- /docs/jobstepapi/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/jobstepapi/html/index.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Basket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Basket.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Catalog.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Common.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Content.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.CustomObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.CustomObject.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Customer.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Forms.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.ImpEx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.ImpEx.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Job.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Order.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.OrderCenter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.OrderCenter.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Payment.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.ProductList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.ProductList.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Scripting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Scripting.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Search.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.SiteMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.SiteMap.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.SourceCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.SourceCode.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Store.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/group.Util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/group.Util.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/groupList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/groupList.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/images/dwscriptlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/images/dwscriptlarge.gif -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/images/error.gif -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/images/icon-api_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/images/icon-api_16.png -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/images/info.gif -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/images/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/images/inherit.gif -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/images/warning.gif -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/js/dwapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/js/dwapi.js -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/overview.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ABCTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ABCTest.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.AcceptForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.AcceptForm.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.Assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.Assign.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.CancelOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.CancelOrder.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.CreateCustomer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.CreateCustomer.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.CreateOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.CreateOrder.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.CreateOrder2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.CreateOrder2.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.CreateOrderNo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.CreateOrderNo.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.CreateShipment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.CreateShipment.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.Eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.Eval.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportABTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportABTests.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportCatalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportCatalog.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportContent.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportCoupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportCoupons.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportMetaData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportMetaData.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportOrders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportOrders.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportSlots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportSlots.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportStores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportStores.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ExportTaxTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ExportTaxTable.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.FailOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.FailOrder.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetBasket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetBasket.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetBrands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetBrands.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetCategory.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetContent.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetCustomer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetCustomer.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetOrder.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetProduct.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.GetProductList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.GetProductList.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportABTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportABTests.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportCatalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportCatalog.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportContent.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportCoupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportCoupons.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportSlots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportSlots.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportStores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportStores.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ImportTaxTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ImportTaxTable.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.LoginAgentUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.LoginAgentUser.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.LoginCustomer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.LoginCustomer.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.LogoutCustomer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.LogoutCustomer.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.Paging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.Paging.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.PlaceOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.PlaceOrder.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.RedirectURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.RedirectURL.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.RemoveCustomer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.RemoveCustomer.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.ReturnImport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.ReturnImport.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.RunJobNow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.RunJobNow.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.Script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.Script.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.Search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.Search.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.SendMail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.SendMail.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.SetFormOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.SetFormOptions.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.SetSourceCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.SetSourceCode.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipelet.StartCheckout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipelet.StartCheckout.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipeletDeprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipeletDeprecated.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipeletList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipeletList.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/pipeletVersioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/pipeletVersioning.html -------------------------------------------------------------------------------- /docs/pipeletapi/html/api/styles/javadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/api/styles/javadoc.css -------------------------------------------------------------------------------- /docs/pipeletapi/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/pipeletapi/html/index.html -------------------------------------------------------------------------------- /docs/quota/html/API_Quotas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/API_Quotas.html -------------------------------------------------------------------------------- /docs/quota/html/Object_Quotas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/Object_Quotas.html -------------------------------------------------------------------------------- /docs/quota/html/images/dwscriptlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/images/dwscriptlarge.gif -------------------------------------------------------------------------------- /docs/quota/html/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/images/error.gif -------------------------------------------------------------------------------- /docs/quota/html/images/icon-api_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/images/icon-api_16.png -------------------------------------------------------------------------------- /docs/quota/html/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/images/info.gif -------------------------------------------------------------------------------- /docs/quota/html/images/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/images/inherit.gif -------------------------------------------------------------------------------- /docs/quota/html/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/images/warning.gif -------------------------------------------------------------------------------- /docs/quota/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/index.html -------------------------------------------------------------------------------- /docs/quota/html/styles/javadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/quota/html/styles/javadoc.css -------------------------------------------------------------------------------- /docs/scriptapi/html/api/apiDeprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/apiDeprecated.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/apiVersioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/apiVersioning.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/classList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/classList.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Array.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_BigInt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_BigInt.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Boolean.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_DataView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_DataView.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Date.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Error.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Fault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Fault.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Function.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_IOError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_IOError.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Iterable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Iterable.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Iterator.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_JSON.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_JSON.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Map.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Math.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Module.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Number.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Object.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_QName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_QName.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_RegExp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_RegExp.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Set.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_String.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_Symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_Symbol.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_URIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_URIError.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_WeakMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_WeakMap.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_WeakSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_WeakSet.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_XML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_XML.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_XMLList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_XMLList.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_TopLevel_global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_TopLevel_global.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_alert_Alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_alert_Alert.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_alert_Alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_alert_Alerts.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_catalog_Store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_catalog_Store.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_content_Folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_content_Folder.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_crypto_Cipher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_crypto_Cipher.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_crypto_JWE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_crypto_JWE.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_crypto_JWS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_crypto_JWS.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_crypto_KeyRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_crypto_KeyRef.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_crypto_Mac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_crypto_Mac.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_crypto_WeakMac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_crypto_WeakMac.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_File.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_File.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_FileReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_FileReader.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_FileWriter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_FileWriter.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_InputStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_InputStream.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_PrintWriter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_PrintWriter.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_Reader.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_io_Writer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_io_Writer.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_net_FTPClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_net_FTPClient.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_net_HTTPClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_net_HTTPClient.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_net_Mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_net_Mail.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_net_SFTPClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_net_SFTPClient.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_object_Note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_object_Note.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_Basket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_Basket.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_Invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_Invoice.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_LineItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_LineItem.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_Order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_Order.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_OrderMgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_OrderMgr.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_Return.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_Shipment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_Shipment.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_SumItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_SumItem.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_TaxGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_TaxGroup.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_TaxItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_TaxItem.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_order_TaxMgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_order_TaxMgr.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_rpc_SOAPUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_rpc_SOAPUtil.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_rpc_Stub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_rpc_Stub.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_svc_FTPService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_svc_FTPService.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_svc_Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_svc_Result.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_svc_Service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_svc_Service.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Cache.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_HookMgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_HookMgr.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Log.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_LogNDC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_LogNDC.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Logger.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Request.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Session.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Site.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_Status.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_system_System.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_system_System.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_template_ISML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_template_ISML.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_ArrayList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_ArrayList.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Assert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Assert.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Bytes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Bytes.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Calendar.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Currency.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_DateUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_DateUtils.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Decimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Decimal.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_HashMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_HashMap.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_HashSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_HashSet.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Iterator.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_List.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Locale.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Map.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_MapEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_MapEntry.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Set.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_SortedMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_SortedMap.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_SortedSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_SortedSet.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_Template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_Template.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_util_UUIDUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_util_UUIDUtils.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_value_Money.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_value_Money.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_value_Quantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_value_Quantity.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_Cookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_Cookie.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_Cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_Cookies.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_Form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_Form.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_FormAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_FormAction.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_FormField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_FormField.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_FormGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_FormGroup.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_FormList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_FormList.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_Forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_Forms.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_Resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_Resource.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_URL.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_URLAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_URLAction.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_web_URLUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_web_URLUtils.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_ws_Port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_ws_Port.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/class_dw_ws_WSUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/class_dw_ws_WSUtil.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/images/dwscriptlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/images/dwscriptlarge.gif -------------------------------------------------------------------------------- /docs/scriptapi/html/api/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/images/error.gif -------------------------------------------------------------------------------- /docs/scriptapi/html/api/images/icon-api_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/images/icon-api_16.png -------------------------------------------------------------------------------- /docs/scriptapi/html/api/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/images/info.gif -------------------------------------------------------------------------------- /docs/scriptapi/html/api/images/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/images/inherit.gif -------------------------------------------------------------------------------- /docs/scriptapi/html/api/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/images/warning.gif -------------------------------------------------------------------------------- /docs/scriptapi/html/api/js/dwapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/js/dwapi.js -------------------------------------------------------------------------------- /docs/scriptapi/html/api/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/overview.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/packageList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/packageList.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_TopLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_TopLevel.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_alert.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_campaign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_campaign.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_catalog.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_content.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_crypto.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_customer.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_experience.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_experience.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_io.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_job.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_net.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_net.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_object.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_order.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_order_hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_order_hooks.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_rpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_rpc.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_sitemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_sitemap.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_suggest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_suggest.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_svc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_svc.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_system.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_template.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_util.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_value.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_web.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/package_dw_ws.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/package_dw_ws.html -------------------------------------------------------------------------------- /docs/scriptapi/html/api/styles/javadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/api/styles/javadoc.css -------------------------------------------------------------------------------- /docs/scriptapi/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/scriptapi/html/index.html -------------------------------------------------------------------------------- /docs/xsd/abtest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/abtest.xsd -------------------------------------------------------------------------------- /docs/xsd/abtestparticipants.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/abtestparticipants.xsd -------------------------------------------------------------------------------- /docs/xsd/assignment.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/assignment.xsd -------------------------------------------------------------------------------- /docs/xsd/bmext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/bmext.xsd -------------------------------------------------------------------------------- /docs/xsd/cachesettings.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/cachesettings.xsd -------------------------------------------------------------------------------- /docs/xsd/catalog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/catalog.xsd -------------------------------------------------------------------------------- /docs/xsd/coupon.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/coupon.xsd -------------------------------------------------------------------------------- /docs/xsd/couponredemption.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/couponredemption.xsd -------------------------------------------------------------------------------- /docs/xsd/csrfwhitelists.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/csrfwhitelists.xsd -------------------------------------------------------------------------------- /docs/xsd/customer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customer.xsd -------------------------------------------------------------------------------- /docs/xsd/customeractivedata.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customeractivedata.xsd -------------------------------------------------------------------------------- /docs/xsd/customercdnsettings.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customercdnsettings.xsd -------------------------------------------------------------------------------- /docs/xsd/customergroup.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customergroup.xsd -------------------------------------------------------------------------------- /docs/xsd/customerlist.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customerlist.xsd -------------------------------------------------------------------------------- /docs/xsd/customerlist2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customerlist2.xsd -------------------------------------------------------------------------------- /docs/xsd/customerpaymentinstrument.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customerpaymentinstrument.xsd -------------------------------------------------------------------------------- /docs/xsd/customobject.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/customobject.xsd -------------------------------------------------------------------------------- /docs/xsd/dcext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/dcext.xsd -------------------------------------------------------------------------------- /docs/xsd/feed.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/feed.xsd -------------------------------------------------------------------------------- /docs/xsd/form.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/form.xsd -------------------------------------------------------------------------------- /docs/xsd/geolocation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/geolocation.xsd -------------------------------------------------------------------------------- /docs/xsd/giftcertificate.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/giftcertificate.xsd -------------------------------------------------------------------------------- /docs/xsd/inventory.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/inventory.xsd -------------------------------------------------------------------------------- /docs/xsd/jobs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/jobs.xsd -------------------------------------------------------------------------------- /docs/xsd/library.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/library.xsd -------------------------------------------------------------------------------- /docs/xsd/locales.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/locales.xsd -------------------------------------------------------------------------------- /docs/xsd/metadata.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/metadata.xsd -------------------------------------------------------------------------------- /docs/xsd/oauth.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/oauth.xsd -------------------------------------------------------------------------------- /docs/xsd/order.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/order.xsd -------------------------------------------------------------------------------- /docs/xsd/pagemetatag.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/pagemetatag.xsd -------------------------------------------------------------------------------- /docs/xsd/paymentmethod.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/paymentmethod.xsd -------------------------------------------------------------------------------- /docs/xsd/paymentprocessor.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/paymentprocessor.xsd -------------------------------------------------------------------------------- /docs/xsd/preferences.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/preferences.xsd -------------------------------------------------------------------------------- /docs/xsd/priceadjustmentlimits.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/priceadjustmentlimits.xsd -------------------------------------------------------------------------------- /docs/xsd/pricebook.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/pricebook.xsd -------------------------------------------------------------------------------- /docs/xsd/productlist.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/productlist.xsd -------------------------------------------------------------------------------- /docs/xsd/promotion.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/promotion.xsd -------------------------------------------------------------------------------- /docs/xsd/redirecturl.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/redirecturl.xsd -------------------------------------------------------------------------------- /docs/xsd/returnimportfeed.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/returnimportfeed.xsd -------------------------------------------------------------------------------- /docs/xsd/schedules.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/schedules.xsd -------------------------------------------------------------------------------- /docs/xsd/search.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/search.xsd -------------------------------------------------------------------------------- /docs/xsd/search2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/search2.xsd -------------------------------------------------------------------------------- /docs/xsd/services.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/services.xsd -------------------------------------------------------------------------------- /docs/xsd/shipping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/shipping.xsd -------------------------------------------------------------------------------- /docs/xsd/shippingorderupdatefeed.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/shippingorderupdatefeed.xsd -------------------------------------------------------------------------------- /docs/xsd/site.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/site.xsd -------------------------------------------------------------------------------- /docs/xsd/sitemapconfiguration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/sitemapconfiguration.xsd -------------------------------------------------------------------------------- /docs/xsd/slot.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/slot.xsd -------------------------------------------------------------------------------- /docs/xsd/sort.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/sort.xsd -------------------------------------------------------------------------------- /docs/xsd/sourcecode.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/sourcecode.xsd -------------------------------------------------------------------------------- /docs/xsd/store.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/store.xsd -------------------------------------------------------------------------------- /docs/xsd/tax.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/tax.xsd -------------------------------------------------------------------------------- /docs/xsd/urlrules.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/urlrules.xsd -------------------------------------------------------------------------------- /docs/xsd/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/docs/xsd/xml.xsd -------------------------------------------------------------------------------- /guides/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/guides/hooks.md -------------------------------------------------------------------------------- /guidetemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/guidetemplate.html -------------------------------------------------------------------------------- /isml/isactivedatacontext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/isml/isactivedatacontext.html -------------------------------------------------------------------------------- /isml/isif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/isml/isif.html -------------------------------------------------------------------------------- /ocapi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/.DS_Store -------------------------------------------------------------------------------- /ocapi/APIExplorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/APIExplorer.html -------------------------------------------------------------------------------- /ocapi/BatchRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/BatchRequests.html -------------------------------------------------------------------------------- /ocapi/BestPractices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/BestPractices.html -------------------------------------------------------------------------------- /ocapi/CORS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/CORS.html -------------------------------------------------------------------------------- /ocapi/Caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Caching.html -------------------------------------------------------------------------------- /ocapi/ClientApplicationIdentification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/ClientApplicationIdentification.html -------------------------------------------------------------------------------- /ocapi/CustomProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/CustomProperties.html -------------------------------------------------------------------------------- /ocapi/Customization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Customization.html -------------------------------------------------------------------------------- /ocapi/DataFormats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/DataFormats.html -------------------------------------------------------------------------------- /ocapi/Exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Exceptions.html -------------------------------------------------------------------------------- /ocapi/Expansions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Expansions.html -------------------------------------------------------------------------------- /ocapi/Filtering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Filtering.html -------------------------------------------------------------------------------- /ocapi/Flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Flash.html -------------------------------------------------------------------------------- /ocapi/HookCircuitBreaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/HookCircuitBreaker.html -------------------------------------------------------------------------------- /ocapi/Hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Hooks.html -------------------------------------------------------------------------------- /ocapi/HttpHeaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/HttpHeaders.html -------------------------------------------------------------------------------- /ocapi/HttpMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/HttpMethods.html -------------------------------------------------------------------------------- /ocapi/HttpStatusCodesAndFaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/HttpStatusCodesAndFaults.html -------------------------------------------------------------------------------- /ocapi/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Images.html -------------------------------------------------------------------------------- /ocapi/JSONP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/JSONP.html -------------------------------------------------------------------------------- /ocapi/JWT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/JWT.html -------------------------------------------------------------------------------- /ocapi/Localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Localization.html -------------------------------------------------------------------------------- /ocapi/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Metadata.html -------------------------------------------------------------------------------- /ocapi/OAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/OAuth.html -------------------------------------------------------------------------------- /ocapi/OCAPISettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/OCAPISettings.html -------------------------------------------------------------------------------- /ocapi/OptimisticLocking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/OptimisticLocking.html -------------------------------------------------------------------------------- /ocapi/Pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/Pagination.html -------------------------------------------------------------------------------- /ocapi/PropertySelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/PropertySelection.html -------------------------------------------------------------------------------- /ocapi/ResourceStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/ResourceStates.html -------------------------------------------------------------------------------- /ocapi/SessionBridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/SessionBridge.html -------------------------------------------------------------------------------- /ocapi/SystemJobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/SystemJobs.html -------------------------------------------------------------------------------- /ocapi/UrlSchema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/UrlSchema.html -------------------------------------------------------------------------------- /ocapi/VersioningAndDeprecationPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/VersioningAndDeprecationPolicy.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTestGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTestGroup.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTestSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTestSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTestSegment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTestSegment.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTestSegmentStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTestSegmentStats.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTestTrigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTestTrigger.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AbTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AbTests.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AccessKeyDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AccessKeyDetails.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AccessKeyUpdateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AccessKeyUpdateRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AccountTransaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AccountTransaction.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AlertDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AlertDescriptor.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AlertDescriptorSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AlertDescriptorSettings.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AlertDescriptors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AlertDescriptors.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AlertItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AlertItem.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AlertItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AlertItems.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AlertSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AlertSettings.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ApplicationPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ApplicationPermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AssignedExperiences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AssignedExperiences.html -------------------------------------------------------------------------------- /ocapi/data/Documents/AssignedQualifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/AssignedQualifiers.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Assignment.html -------------------------------------------------------------------------------- /ocapi/data/Documents/BMPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/BMPermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/BoolFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/BoolFilter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/BoolQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/BoolQuery.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CSCPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CSCPermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Campaign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Campaign.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CampaignSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CampaignSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Campaigns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Campaigns.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CartridgePathAddRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CartridgePathAddRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CartridgePathApiResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CartridgePathApiResponse.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CartridgePathCreateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CartridgePathCreateRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Catalog.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CatalogCategoryId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CatalogCategoryId.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CatalogSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CatalogSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Catalogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Catalogs.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Categories.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Category.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CategoryLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CategoryLink.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CategoryLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CategoryLinks.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CategoryProductAssignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CategoryProductAssignment.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CategorySearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CategorySearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CodeVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CodeVersion.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CodeVersionResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CodeVersionResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ContentAsset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ContentAsset.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ContentAssetResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ContentAssetResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ContentFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ContentFolder.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ContentFolderAssignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ContentFolderAssignment.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ContentFolderResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ContentFolderResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ContentSubFolderResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ContentSubFolderResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Coupon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Coupon.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CouponCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CouponCode.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CouponCodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CouponCodes.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CouponMultiCodesRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CouponMultiCodesRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CouponRedemption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CouponRedemption.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CouponSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CouponSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CouponSystemCodeConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CouponSystemCodeConfig.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Coupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Coupons.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Credentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Credentials.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomLogSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomLogSettings.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomObject.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomObjectSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomObjectSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Customer.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerAddress.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerAddressResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerAddressResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroup.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroupMember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroupMember.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroupMemberResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroupMemberResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroupMembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroupMembers.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroupResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroupResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroupSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroupSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerGroups.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerList.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerListLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerListLink.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerSearchHit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerSearchHit.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerSearchRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerSearchRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/CustomerSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/CustomerSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/EcdnLogFetchRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/EcdnLogFetchRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/EcdnLogFetchResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/EcdnLogFetchResponse.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ExportSitesConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ExportSitesConfiguration.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Fault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Fault.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Filter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/FilteredQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/FilteredQuery.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Flash.html -------------------------------------------------------------------------------- /ocapi/data/Documents/FunctionalPermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/FunctionalPermission.html -------------------------------------------------------------------------------- /ocapi/data/Documents/FunctionalPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/FunctionalPermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/GiftCertificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/GiftCertificate.html -------------------------------------------------------------------------------- /ocapi/data/Documents/GiftCertificates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/GiftCertificates.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ImageGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ImageGroup.html -------------------------------------------------------------------------------- /ocapi/data/Documents/InventoryList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/InventoryList.html -------------------------------------------------------------------------------- /ocapi/data/Documents/InventoryListSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/InventoryListSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/InventoryLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/InventoryLists.html -------------------------------------------------------------------------------- /ocapi/data/Documents/JobExecution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/JobExecution.html -------------------------------------------------------------------------------- /ocapi/data/Documents/JobExecutionParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/JobExecutionParameter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/JobExecutionRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/JobExecutionRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/JobExecutionResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/JobExecutionResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/JobExecutionSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/JobExecutionSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/JobStepExecution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/JobStepExecution.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Locale.html -------------------------------------------------------------------------------- /ocapi/data/Documents/LocalePermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/LocalePermission.html -------------------------------------------------------------------------------- /ocapi/data/Documents/LocalePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/LocalePermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/LocaleResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/LocaleResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/LogCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/LogCategory.html -------------------------------------------------------------------------------- /ocapi/data/Documents/MarkupText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/MarkupText.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Master.html -------------------------------------------------------------------------------- /ocapi/data/Documents/MatchAllQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/MatchAllQuery.html -------------------------------------------------------------------------------- /ocapi/data/Documents/MediaFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/MediaFile.html -------------------------------------------------------------------------------- /ocapi/data/Documents/MenuAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/MenuAction.html -------------------------------------------------------------------------------- /ocapi/data/Documents/MenuItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/MenuItem.html -------------------------------------------------------------------------------- /ocapi/data/Documents/MetricResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/MetricResponse.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ModulePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ModulePermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Money.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Money.html -------------------------------------------------------------------------------- /ocapi/data/Documents/NestedQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/NestedQuery.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ObjectAttributeDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ObjectAttributeDefinition.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ObjectAttributeGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ObjectAttributeGroup.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ObjectAttributeGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ObjectAttributeGroups.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ObjectTypeDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ObjectTypeDefinition.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ObjectTypeDefinitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ObjectTypeDefinitions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/OcapiConfigsApiRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/OcapiConfigsApiRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/OcapiConfigsApiResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/OcapiConfigsApiResponse.html -------------------------------------------------------------------------------- /ocapi/data/Documents/OrderUpdateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/OrderUpdateRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/OrganizationPreferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/OrganizationPreferences.html -------------------------------------------------------------------------------- /ocapi/data/Documents/PasswordChangeRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/PasswordChangeRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/PathRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/PathRecord.html -------------------------------------------------------------------------------- /ocapi/data/Documents/PreferenceValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/PreferenceValue.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Product.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductInventoryRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductInventoryRecord.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductInventoryRecords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductInventoryRecords.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductOption.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductOptionValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductOptionValue.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductOptionValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductOptionValues.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductOptions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ProductType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ProductType.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Promotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Promotion.html -------------------------------------------------------------------------------- /ocapi/data/Documents/PromotionSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/PromotionSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Promotions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Promotions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Query.html -------------------------------------------------------------------------------- /ocapi/data/Documents/QueryFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/QueryFilter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Range2Filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Range2Filter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RangeFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RangeFilter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Recommender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Recommender.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RecommendersResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RecommendersResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Recurrence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Recurrence.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RedemptionLimits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RedemptionLimits.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ResourceInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ResourceInfo.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ResourceObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ResourceObject.html -------------------------------------------------------------------------------- /ocapi/data/Documents/ResultPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/ResultPage.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Role.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleLocalePermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleLocalePermission.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleLocalePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleLocalePermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleModulePermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleModulePermission.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleModulePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleModulePermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RolePermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RolePermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleSearchRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleSearchRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleWebdavPermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleWebdavPermission.html -------------------------------------------------------------------------------- /ocapi/data/Documents/RoleWebdavPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/RoleWebdavPermissions.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Roles.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Rule.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Schedule.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SearchRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SearchRequest.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Site.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SitePreferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SitePreferences.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SiteResourceInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SiteResourceInfo.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SiteSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SiteSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Sites.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Slot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Slot.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SlotConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SlotConfiguration.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SlotConfigurations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SlotConfigurations.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SlotContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SlotContent.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SlotSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SlotSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Slots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Slots.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Sort.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SortingRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SortingRule.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SortingRuleSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SortingRuleSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SortingRuleStep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SortingRuleStep.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SourceCodeGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SourceCodeGroup.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SourceCodeGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SourceCodeGroups.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SourceCodeRedirectInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SourceCodeRedirectInfo.html -------------------------------------------------------------------------------- /ocapi/data/Documents/SourceCodeSpecification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/SourceCodeSpecification.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Status.html -------------------------------------------------------------------------------- /ocapi/data/Documents/StatusMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/StatusMetadata.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Store.html -------------------------------------------------------------------------------- /ocapi/data/Documents/StoreSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/StoreSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Stores.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Tag.html -------------------------------------------------------------------------------- /ocapi/data/Documents/TermFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/TermFilter.html -------------------------------------------------------------------------------- /ocapi/data/Documents/TermQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/TermQuery.html -------------------------------------------------------------------------------- /ocapi/data/Documents/TextQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/TextQuery.html -------------------------------------------------------------------------------- /ocapi/data/Documents/TimeOfDay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/TimeOfDay.html -------------------------------------------------------------------------------- /ocapi/data/Documents/User.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/User.html -------------------------------------------------------------------------------- /ocapi/data/Documents/UserSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/UserSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Users.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Variant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Variant.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VariantSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VariantSearchResult.html -------------------------------------------------------------------------------- /ocapi/data/Documents/Variants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/Variants.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VariationAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VariationAttribute.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VariationAttributeValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VariationAttributeValue.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VariationAttributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VariationAttributes.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VariationGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VariationGroup.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VariationGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VariationGroups.html -------------------------------------------------------------------------------- /ocapi/data/Documents/VersionRangeObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/VersionRangeObject.html -------------------------------------------------------------------------------- /ocapi/data/Documents/WebdavPermission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/WebdavPermission.html -------------------------------------------------------------------------------- /ocapi/data/Documents/WebdavPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Documents/WebdavPermissions.html -------------------------------------------------------------------------------- /ocapi/data/Resources/AbTestSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/AbTestSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/AbTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/AbTests.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Alerts.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CampaignSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CampaignSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Campaigns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Campaigns.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CatalogSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CatalogSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Catalogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Catalogs.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Categories.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CategoryLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CategoryLinks.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CategorySearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CategorySearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CodeVersions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CodeVersions.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CouponRedemptionSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CouponRedemptionSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CouponSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CouponSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Coupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Coupons.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CustomObjectDefinitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CustomObjectDefinitions.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CustomObjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CustomObjects.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CustomObjectsSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CustomObjectsSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CustomerGroupSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CustomerGroupSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CustomerGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CustomerGroups.html -------------------------------------------------------------------------------- /ocapi/data/Resources/CustomerLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/CustomerLists.html -------------------------------------------------------------------------------- /ocapi/data/Resources/GiftCertificateSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/GiftCertificateSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/GiftCertificates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/GiftCertificates.html -------------------------------------------------------------------------------- /ocapi/data/Resources/GlobalPreferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/GlobalPreferences.html -------------------------------------------------------------------------------- /ocapi/data/Resources/InventoryListSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/InventoryListSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/InventoryLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/InventoryLists.html -------------------------------------------------------------------------------- /ocapi/data/Resources/JobExecutionSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/JobExecutionSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Jobs.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Libraries.html -------------------------------------------------------------------------------- /ocapi/data/Resources/LocaleInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/LocaleInfo.html -------------------------------------------------------------------------------- /ocapi/data/Resources/LogRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/LogRequests.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Metrics.html -------------------------------------------------------------------------------- /ocapi/data/Resources/OcapiConfigs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/OcapiConfigs.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Permissions.html -------------------------------------------------------------------------------- /ocapi/data/Resources/ProductInventoryRecords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/ProductInventoryRecords.html -------------------------------------------------------------------------------- /ocapi/data/Resources/ProductSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/ProductSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Products.html -------------------------------------------------------------------------------- /ocapi/data/Resources/PromotionSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/PromotionSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Promotions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Promotions.html -------------------------------------------------------------------------------- /ocapi/data/Resources/RoleSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/RoleSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Roles.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Settings.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SitePreferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SitePreferences.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SiteSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SiteSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Sites.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SlotConfigurationSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SlotConfigurationSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SlotConfigurations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SlotConfigurations.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SlotSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SlotSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Slots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Slots.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SortingRuleSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SortingRuleSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SourceCodeGroupSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SourceCodeGroupSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SourceCodeGroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SourceCodeGroups.html -------------------------------------------------------------------------------- /ocapi/data/Resources/StoreSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/StoreSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Stores.html -------------------------------------------------------------------------------- /ocapi/data/Resources/SystemObjectDefinitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/SystemObjectDefinitions.html -------------------------------------------------------------------------------- /ocapi/data/Resources/UserSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/UserSearch.html -------------------------------------------------------------------------------- /ocapi/data/Resources/Users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/Users.html -------------------------------------------------------------------------------- /ocapi/data/Resources/VariantSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/data/Resources/VariantSearch.html -------------------------------------------------------------------------------- /ocapi/shop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/.DS_Store -------------------------------------------------------------------------------- /ocapi/shop/Documents/ApproachingDiscount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ApproachingDiscount.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/AuthRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/AuthRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Basket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Basket.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/BasketCreateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/BasketCreateRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/BasketReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/BasketReference.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/BasketsResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/BasketsResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/BonusDiscountLineItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/BonusDiscountLineItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/BundledProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/BundledProduct.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/BundledProductItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/BundledProductItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Category.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CategoryResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CategoryResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Content.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ContentFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ContentFolder.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ContentFolderResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ContentFolderResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ContentResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ContentResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ContentSearchRefinement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ContentSearchRefinement.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ContentSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ContentSearchResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CouponItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CouponItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomObject.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Customer.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerAddress.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerAddressLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerAddressLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerAddressResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerAddressResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerInfo.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerOrderResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerOrderResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerProductList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerProductList.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerProductListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerProductListItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomerRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomerRegistration.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/CustomersExtProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/CustomersExtProfile.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Discount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Discount.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/DiscountRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/DiscountRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Fault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Fault.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Flash.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/GiftCertificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/GiftCertificate.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/GiftCertificateItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/GiftCertificateItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/GiftCertificateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/GiftCertificateRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/GroupedTax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/GroupedTax.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Image.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ImageGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ImageGroup.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Inventory.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ItemKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ItemKey.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Locale.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Master.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Note.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/NotesResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/NotesResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Option.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OptionItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OptionItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OptionValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OptionValue.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Order.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OrderAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OrderAddress.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OrderPaymentCardRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OrderPaymentCardRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OrderPaymentInstrument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OrderPaymentInstrument.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OrderSearchHit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OrderSearchHit.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OrderSearchRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OrderSearchRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/OrderSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/OrderSearchResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PasswordChangeRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PasswordChangeRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PasswordReset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PasswordReset.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PathRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PathRecord.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PaymentBankAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PaymentBankAccount.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PaymentCard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PaymentCard.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PaymentCardRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PaymentCardRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PaymentCardSpec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PaymentCardSpec.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PaymentMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PaymentMethod.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PaymentMethodResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PaymentMethodResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PriceAdjustment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PriceAdjustment.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PriceAdjustmentLimit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PriceAdjustmentLimit.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PriceAdjustmentLimits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PriceAdjustmentLimits.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PriceAdjustmentRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PriceAdjustmentRequest.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Product.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductDetailsLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductDetailsLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductListEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductListEvent.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductListItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductListLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductListLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductListRegistrant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductListRegistrant.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductPromotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductPromotion.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductRef.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductSearchHit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductSearchHit.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductSearchRefinement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductSearchRefinement.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductSearchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductSearchResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductSimpleLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductSimpleLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ProductType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ProductType.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Promotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Promotion.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PromotionLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PromotionLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PromotionResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PromotionResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PublicProductList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PublicProductList.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PublicProductListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PublicProductListItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PublicProductListLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PublicProductListLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/PublicProductListResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/PublicProductListResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Recommendation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Recommendation.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/RecommendationType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/RecommendationType.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Shipment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Shipment.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ShippingItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ShippingItem.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ShippingMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ShippingMethod.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ShippingMethodResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ShippingMethodResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/ShippingPromotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/ShippingPromotion.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SimpleLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SimpleLink.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Site.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SortField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SortField.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Status.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Store.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/StoreResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/StoreResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestedCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestedCategory.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestedContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestedContent.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestedPhrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestedPhrase.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestedProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestedProduct.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestedTerm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestedTerm.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestedTerms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestedTerms.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Suggestion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Suggestion.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/SuggestionResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/SuggestionResult.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/Variant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/Variant.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/VariationAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/VariationAttribute.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/VariationAttributeValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/VariationAttributeValue.html -------------------------------------------------------------------------------- /ocapi/shop/Documents/VariationGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Documents/VariationGroup.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Baskets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Baskets.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Categories.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Content.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/ContentSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/ContentSearch.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/CustomObjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/CustomObjects.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Customers.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Folders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Folders.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/GiftCertificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/GiftCertificate.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/OrderSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/OrderSearch.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Orders.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/PriceAdjustmentLimits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/PriceAdjustmentLimits.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/ProductLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/ProductLists.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/ProductSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/ProductSearch.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Products.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Promotions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Promotions.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/SearchSuggestion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/SearchSuggestion.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Sessions.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Site.html -------------------------------------------------------------------------------- /ocapi/shop/Resources/Stores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/ocapi/shop/Resources/Stores.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schematemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/schematemplate.html -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/screen.png -------------------------------------------------------------------------------- /screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/screen2.png -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clavery/docset-sfcc-b2c/HEAD/uv.lock --------------------------------------------------------------------------------