@salesforce/b2c-cli 1.10.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/job/import.d.ts +1 -0
- package/dist/commands/job/import.js +15 -0
- package/dist/commands/job/import.js.map +1 -1
- package/dist/commands/setup/ide/tsserver-plugin.d.ts +56 -0
- package/dist/commands/setup/ide/tsserver-plugin.js +88 -0
- package/dist/commands/setup/ide/tsserver-plugin.js.map +1 -0
- package/dist/commands/setup/ide/vscode-types.d.ts +44 -0
- package/dist/commands/setup/ide/vscode-types.js +141 -0
- package/dist/commands/setup/ide/vscode-types.js.map +1 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/package.json +44 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/plugin/index.js +575 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/APIException.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/ConversionError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/EvalError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/Fault.d.ts +55 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/IOError.d.ts +37 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/InternalError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/Module.d.ts +99 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/Namespace.d.ts +77 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/QName.d.ts +67 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/RangeError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/ReferenceError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/StopIteration.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/SyntaxError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/SystemError.d.ts +38 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/TypeError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/URIError.d.ts +16 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/XML.d.ts +398 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/XMLList.d.ts +155 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/XMLStreamError.d.ts +46 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/TopLevel/arguments.d.ts +17 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/alert/Alert.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/alert/Alerts.d.ts +123 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/alert/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/ABTest.d.ts +26 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/ABTestMgr.d.ts +28 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/ABTestSegment.d.ts +45 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/AmountDiscount.d.ts +22 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/ApproachingDiscount.d.ts +75 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/BonusChoiceDiscount.d.ts +106 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/BonusDiscount.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/Campaign.d.ts +167 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/CampaignMgr.d.ts +192 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/CampaignStatusCodes.d.ts +36 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/Coupon.d.ts +146 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/CouponMgr.d.ts +49 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/CouponRedemption.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/CouponStatusCodes.d.ts +55 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/Discount.d.ts +122 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/DiscountPlan.d.ts +161 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/FixedPriceDiscount.d.ts +24 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/FixedPriceShippingDiscount.d.ts +24 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/FreeDiscount.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/FreeShippingDiscount.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/PercentageDiscount.d.ts +24 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/PercentageOptionDiscount.d.ts +21 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/PriceBookPriceDiscount.d.ts +20 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/Promotion.d.ts +455 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/PromotionMgr.d.ts +262 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/PromotionPlan.d.ts +180 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/SlotContent.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/SourceCodeGroup.d.ts +42 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/SourceCodeInfo.d.ts +76 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/SourceCodeStatusCodes.d.ts +19 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/TotalFixedPriceDiscount.d.ts +20 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/campaign/index.d.ts +65 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Catalog.d.ts +84 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/CatalogMgr.d.ts +61 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Category.d.ts +592 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/CategoryAssignment.d.ts +78 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/CategoryLink.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/PriceBook.d.ts +94 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/PriceBookMgr.d.ts +66 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Product.d.ts +1100 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductActiveData.d.ts +593 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductAttributeModel.d.ts +215 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductAvailabilityLevels.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductAvailabilityModel.d.ts +359 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductInventoryList.d.ts +65 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductInventoryMgr.d.ts +53 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductInventoryRecord.d.ts +296 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductLink.d.ts +66 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductMgr.d.ts +59 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductOption.d.ts +81 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductOptionModel.d.ts +78 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductOptionValue.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductPriceInfo.d.ts +76 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductPriceModel.d.ts +586 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductPriceTable.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductSearchHit.d.ts +398 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductSearchModel.d.ts +816 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductSearchRefinementDefinition.d.ts +43 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductSearchRefinementValue.d.ts +30 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductSearchRefinements.d.ts +142 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductVariationAttribute.d.ts +44 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductVariationAttributeValue.d.ts +90 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/ProductVariationModel.d.ts +508 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Recommendation.d.ts +139 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/SearchModel.d.ts +277 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/SearchRefinementDefinition.d.ts +61 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/SearchRefinementValue.d.ts +93 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/SearchRefinements.d.ts +114 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/SortingOption.d.ts +45 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/SortingRule.d.ts +18 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Store.d.ts +214 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/StoreGroup.d.ts +44 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/StoreInventoryFilter.d.ts +49 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/StoreInventoryFilterValue.d.ts +45 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/StoreMgr.d.ts +86 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Variant.d.ts +555 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/VariationGroup.d.ts +422 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/index.d.ts +93 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/Content.d.ts +210 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/ContentMgr.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/ContentSearchModel.d.ts +230 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/ContentSearchRefinementDefinition.d.ts +27 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/ContentSearchRefinementValue.d.ts +10 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/ContentSearchRefinements.d.ts +105 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/Folder.d.ts +186 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/Library.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/MarkupText.d.ts +125 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/MediaFile.d.ts +297 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/index.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/CertificateRef.d.ts +20 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/CertificateUtils.d.ts +54 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/Cipher.d.ts +178 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/Encoding.d.ts +78 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/JWE.d.ts +114 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/JWEHeader.d.ts +55 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/JWS.d.ts +105 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/JWSHeader.d.ts +47 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/KeyRef.d.ts +28 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/Mac.d.ts +76 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/MessageDigest.d.ts +108 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/SecureRandom.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/Signature.d.ts +88 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/WeakCipher.d.ts +51 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/WeakMac.d.ts +68 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/WeakMessageDigest.d.ts +100 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/WeakSignature.d.ts +63 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/X509Certificate.d.ts +73 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/crypto/index.d.ts +39 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/AddressBook.d.ts +66 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/AgentUserMgr.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/AgentUserStatusCodes.d.ts +64 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/AuthenticationStatus.d.ts +62 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/Credentials.d.ts +266 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/Customer.d.ts +210 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerActiveData.d.ts +276 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerAddress.d.ts +280 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerCDPData.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerContextMgr.d.ts +21 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerGroup.d.ts +76 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerList.d.ts +29 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerMgr.d.ts +611 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerPasswordConstraints.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerPaymentInstrument.d.ts +118 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/CustomerStatusCodes.d.ts +17 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/EncryptedObject.d.ts +21 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/ExternalProfile.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/OrderHistory.d.ts +81 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/ProductList.d.ts +376 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/ProductListItem.d.ts +204 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/ProductListItemPurchase.d.ts +62 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/ProductListMgr.d.ts +190 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/ProductListRegistrant.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/Profile.d.ts +420 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/Wallet.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/consent/ConsentStatusEntry.d.ts +35 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/consent/MarketingConsentSubscription.d.ts +110 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/consent/ShopperConsentErrorCodes.d.ts +30 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/consent/ShopperConsentException.d.ts +29 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/consent/ShopperConsentMgr.d.ts +78 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/consent/index.d.ts +13 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/index.d.ts +55 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/oauth/OAuthAccessTokenResponse.d.ts +71 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/oauth/OAuthFinalizedResponse.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/oauth/OAuthLoginFlowMgr.d.ts +100 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/oauth/OAuthUserInfoResponse.d.ts +35 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/oauth/index.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/shoppercontext/ShopperContext.d.ts +171 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/shoppercontext/ShopperContextErrorCodes.d.ts +41 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/shoppercontext/ShopperContextException.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/shoppercontext/ShopperContextMgr.d.ts +130 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/customer/shoppercontext/index.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/AspectAttributeValidationException.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/Component.d.ts +83 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/ComponentRenderSettings.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/ComponentScriptContext.d.ts +96 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/CustomEditor.d.ts +80 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/CustomEditorResources.d.ts +51 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/Page.d.ts +255 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/PageMgr.d.ts +311 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/PageScriptContext.d.ts +127 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/Region.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/RegionRenderSettings.d.ts +81 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/cms/CMSRecord.d.ts +68 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/cms/index.d.ts +5 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/image/FocalPoint.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/image/Image.d.ts +45 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/image/ImageMetaData.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/image/index.d.ts +9 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/experience/index.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/applepay/ApplePayHookResult.d.ts +104 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/applepay/ApplePayHooks.d.ts +271 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/applepay/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/facebook/FacebookFeedHooks.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/facebook/FacebookProduct.d.ts +567 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/facebook/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/paymentapi/PaymentApiHooks.d.ts +62 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/paymentapi/index.d.ts +5 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/paymentrequest/PaymentRequestHookResult.d.ts +55 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/paymentrequest/PaymentRequestHooks.d.ts +168 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/paymentrequest/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceAdyenPaymentIntent.d.ts +53 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceAdyenSavedPaymentMethod.d.ts +126 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceBancontactPaymentDetails.d.ts +33 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceCardPaymentDetails.d.ts +41 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceEpsPaymentDetails.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceIdealPaymentDetails.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceKlarnaPaymentDetails.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePayPalOrder.d.ts +109 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePayPalOrderAddress.d.ts +69 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePayPalOrderPayer.d.ts +43 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePayPalPaymentDetails.d.ts +33 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentDetails.d.ts +39 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentIntent.d.ts +116 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentMethod.d.ts +162 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentRequest.d.ts +562 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentsHooks.d.ts +78 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentsMerchantAccount.d.ts +61 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentsMerchantAccountPaymentMethod.d.ts +41 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentsMgr.d.ts +420 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentsSiteConfiguration.d.ts +84 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforcePaymentsZone.d.ts +166 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceSepaDebitPaymentDetails.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/SalesforceVenmoPaymentDetails.d.ts +33 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/payments/index.d.ts +49 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/pinterest/PinterestAvailability.d.ts +34 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/pinterest/PinterestFeedHooks.d.ts +54 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/pinterest/PinterestOrder.d.ts +122 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/pinterest/PinterestOrderHooks.d.ts +42 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/pinterest/PinterestProduct.d.ts +302 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/extensions/pinterest/index.d.ts +13 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/CSVStreamReader.d.ts +51 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/CSVStreamWriter.d.ts +34 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/File.d.ts +343 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/FileReader.d.ts +26 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/FileWriter.d.ts +62 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/InputStream.d.ts +15 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/OutputStream.d.ts +17 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/PrintWriter.d.ts +29 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/RandomAccessFileReader.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/Reader.d.ts +105 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/StringWriter.d.ts +39 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/Writer.d.ts +35 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/XMLIndentingStreamWriter.d.ts +45 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/XMLStreamConstants.d.ts +68 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/XMLStreamReader.d.ts +674 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/XMLStreamWriter.d.ts +204 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/io/index.d.ts +35 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/job/JobExecution.d.ts +52 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/job/JobStepExecution.d.ts +58 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/job/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/FTPClient.d.ts +219 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/FTPFileInfo.d.ts +46 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/HTTPClient.d.ts +337 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/HTTPClientLoggingConfig.d.ts +180 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/HTTPRequestPart.d.ts +122 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/Mail.d.ts +182 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/SFTPClient.d.ts +215 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/SFTPFileInfo.d.ts +45 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/WebDAVClient.d.ts +324 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/WebDAVFileInfo.d.ts +66 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/net/index.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/ActiveData.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/CustomAttributes.d.ts +143 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/CustomObject.d.ts +26 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/CustomObjectMgr.d.ts +283 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/Extensible.d.ts +27 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/ExtensibleObject.d.ts +36 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/Note.d.ts +47 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/ObjectAttributeDefinition.d.ts +239 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/ObjectAttributeGroup.d.ts +68 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/ObjectAttributeValueDefinition.d.ts +29 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/ObjectTypeDefinition.d.ts +113 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/PersistentObject.d.ts +33 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/SimpleExtensible.d.ts +21 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/SystemObjectMgr.d.ts +319 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/object/index.d.ts +31 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/AbstractItem.d.ts +91 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/AbstractItemCtnr.d.ts +100 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/Appeasement.d.ts +163 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/AppeasementItem.d.ts +43 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/Basket.d.ts +476 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/BasketMgr.d.ts +406 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/BonusDiscountLineItem.d.ts +170 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/CouponLineItem.d.ts +139 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/CreateAgentBasketLimitExceededException.d.ts +9 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/CreateBasketFromOrderException.d.ts +17 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/CreateCouponLineItemException.d.ts +29 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/CreateOrderException.d.ts +9 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/CreateTemporaryBasketLimitExceededException.d.ts +9 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/GiftCertificate.d.ts +220 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/GiftCertificateLineItem.d.ts +124 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/GiftCertificateMgr.d.ts +85 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/GiftCertificateStatusCodes.d.ts +42 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/Invoice.d.ts +284 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/InvoiceItem.d.ts +83 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/LineItem.d.ts +265 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/LineItemCtnr.d.ts +1146 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/LineItemTax.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/Order.d.ts +1360 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/OrderAddress.d.ts +259 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/OrderItem.d.ts +332 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/OrderMgr.d.ts +864 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/OrderPaymentInstrument.d.ts +166 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/OrderProcessStatusCodes.d.ts +58 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentCard.d.ts +112 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentInstrument.d.ts +757 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentMethod.d.ts +141 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentMgr.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentProcessor.d.ts +60 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentStatusCodes.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PaymentTransaction.d.ts +123 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PriceAdjustment.d.ts +430 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/PriceAdjustmentLimitTypes.d.ts +26 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ProductLineItem.d.ts +849 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ProductShippingCost.d.ts +41 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ProductShippingLineItem.d.ts +154 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ProductShippingModel.d.ts +73 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/Return.d.ts +161 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ReturnCase.d.ts +215 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ReturnCaseItem.d.ts +165 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ReturnItem.d.ts +159 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/Shipment.d.ts +506 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShipmentShippingCost.d.ts +21 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShipmentShippingModel.d.ts +114 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShippingLineItem.d.ts +151 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShippingLocation.d.ts +123 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShippingMethod.d.ts +114 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShippingMgr.d.ts +95 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShippingOrder.d.ts +304 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/ShippingOrderItem.d.ts +210 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/SumItem.d.ts +75 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/TaxGroup.d.ts +49 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/TaxItem.d.ts +29 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/TaxMgr.d.ts +155 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/TrackingInfo.d.ts +107 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/TrackingRef.d.ts +44 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/BasketMergeHooks.d.ts +46 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/CalculateHooks.d.ts +69 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/CheckoutHooks.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/OrderHooks.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/PaymentHooks.d.ts +189 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/ReturnHooks.d.ts +274 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/ShippingOrderHooks.d.ts +220 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/TaxHooks.d.ts +378 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/hooks/index.d.ts +19 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/order/index.d.ts +123 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/rpc/SOAPUtil.d.ts +339 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/rpc/Stub.d.ts +148 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/rpc/WebReference.d.ts +55 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/rpc/index.d.ts +9 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/sitemap/SitemapFile.d.ts +57 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/sitemap/SitemapMgr.d.ts +70 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/sitemap/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/BrandSuggestions.d.ts +19 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/CategorySuggestions.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/ContentSuggestions.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/CustomSuggestions.d.ts +19 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/ProductSuggestions.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SearchPhraseSuggestions.d.ts +53 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestModel.d.ts +230 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestedCategory.d.ts +19 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestedContent.d.ts +19 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestedPhrase.d.ts +25 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestedProduct.d.ts +21 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestedTerm.d.ts +61 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/SuggestedTerms.d.ts +68 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/Suggestions.d.ts +89 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/suggest/index.d.ts +31 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/FTPService.d.ts +59 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/FTPServiceDefinition.d.ts +38 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/HTTPFormService.d.ts +14 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/HTTPFormServiceDefinition.d.ts +12 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/HTTPService.d.ts +147 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/HTTPServiceDefinition.d.ts +110 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/LocalServiceRegistry.d.ts +61 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/Result.d.ts +133 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/SOAPService.d.ts +36 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/SOAPServiceDefinition.d.ts +12 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/Service.d.ts +99 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/ServiceCallback.d.ts +172 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/ServiceConfig.d.ts +52 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/ServiceCredential.d.ts +67 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/ServiceDefinition.d.ts +105 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/ServiceProfile.d.ts +66 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/ServiceRegistry.d.ts +75 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/svc/index.d.ts +37 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/AgentUserStatusCodes.d.ts +14 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Cache.d.ts +60 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/CacheMgr.d.ts +39 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/HookMgr.d.ts +31 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/InternalObject.d.ts +17 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/JobProcessMonitor.d.ts +37 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Log.d.ts +77 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/LogNDC.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Logger.d.ts +83 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/OrganizationPreferences.d.ts +40 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Pipeline.d.ts +46 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/PipelineDictionary.d.ts +28 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/RESTErrorResponse.d.ts +58 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/RESTResponseMgr.d.ts +99 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/RESTSuccessResponse.d.ts +38 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/RemoteInclude.d.ts +85 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Request.d.ts +363 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/RequestHooks.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Response.d.ts +278 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/SearchStatus.d.ts +74 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Session.d.ts +263 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Site.d.ts +247 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/SitePreferences.d.ts +51 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Status.d.ts +141 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/StatusItem.d.ts +110 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/System.d.ts +96 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/Transaction.d.ts +60 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/system/index.d.ts +57 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/template/ISML.d.ts +32 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/template/Velocity.d.ts +71 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/template/index.d.ts +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/ArrayList.d.ts +40 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Assert.d.ts +159 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/BigInteger.d.ts +104 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Bytes.d.ts +99 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Calendar.d.ts +450 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Collection.d.ts +91 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Currency.d.ts +59 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/DateUtils.d.ts +27 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Decimal.d.ts +148 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/FilteringCollection.d.ts +75 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Geolocation.d.ts +111 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/HashMap.d.ts +17 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/HashSet.d.ts +24 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Iterator.d.ts +34 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/LinkedHashMap.d.ts +18 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/LinkedHashSet.d.ts +26 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/List.d.ts +148 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Locale.d.ts +110 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Map.d.ts +82 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/MapEntry.d.ts +24 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/MappingKey.d.ts +34 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/MappingMgr.d.ts +46 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/PropertyComparator.d.ts +59 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/SecureEncoder.d.ts +371 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/SecureFilter.d.ts +340 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/SeekableIterator.d.ts +85 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Set.d.ts +13 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/SortedMap.d.ts +59 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/SortedSet.d.ts +75 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/StringUtils.d.ts +191 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Template.d.ts +67 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/UUIDUtils.d.ts +12 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/index.d.ts +67 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/value/EnumValue.d.ts +50 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/value/MimeEncodedText.d.ts +47 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/value/Money.d.ts +196 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/value/Quantity.d.ts +103 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/value/index.d.ts +11 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/CSRFProtection.d.ts +48 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/ClickStream.d.ts +87 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/ClickStreamEntry.d.ts +106 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/Cookie.d.ts +166 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/Cookies.d.ts +23 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/Form.d.ts +30 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormAction.d.ts +82 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormElement.d.ts +92 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormElementValidationResult.d.ts +63 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormField.d.ts +331 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormFieldOption.d.ts +90 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormFieldOptions.d.ts +18 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormGroup.d.ts +106 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormList.d.ts +56 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/FormListItem.d.ts +18 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/Forms.d.ts +13 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/HttpParameter.d.ts +195 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/HttpParameterMap.d.ts +92 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/LoopIterator.d.ts +95 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/PageMetaData.d.ts +87 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/PageMetaTag.d.ts +81 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/PagingModel.d.ts +181 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/Resource.d.ts +69 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/URL.d.ts +68 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/URLAction.d.ts +41 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/URLParameter.d.ts +18 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/URLRedirect.d.ts +26 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/URLRedirectMgr.d.ts +37 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/URLUtils.d.ts +759 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/web/index.d.ts +61 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/ws/Port.d.ts +54 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/ws/WSUtil.d.ts +311 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/ws/WebReference2.d.ts +120 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/ws/index.d.ts +9 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/global.d.ts +1101 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/sfra/server.d.ts +271 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/upstream-package.json +7 -0
- package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/upstream-tsconfig.json +7 -0
- package/oclif.manifest.json +4160 -3853
- package/package.json +3 -3
package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/catalog/Category.d.ts
ADDED
|
@@ -0,0 +1,592 @@
|
|
|
1
|
+
import ExtensibleObject = require('../object/ExtensibleObject');
|
|
2
|
+
import CustomAttributes = require('../object/CustomAttributes');
|
|
3
|
+
import MediaFile = require('../content/MediaFile');
|
|
4
|
+
import Collection = require('../util/Collection');
|
|
5
|
+
import Product = require('./Product');
|
|
6
|
+
import CategoryAssignment = require('./CategoryAssignment');
|
|
7
|
+
import CategoryLink = require('./CategoryLink');
|
|
8
|
+
import ProductAttributeModel = require('./ProductAttributeModel');
|
|
9
|
+
import Recommendation = require('./Recommendation');
|
|
10
|
+
import SortingRule = require('./SortingRule');
|
|
11
|
+
|
|
12
|
+
declare global {
|
|
13
|
+
module ICustomAttributes {
|
|
14
|
+
interface Category extends CustomAttributes {
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Represents a category in a product catalog.
|
|
21
|
+
*/
|
|
22
|
+
declare class Category extends ExtensibleObject<ICustomAttributes.Category> {
|
|
23
|
+
/**
|
|
24
|
+
* Constant representing the Variation Group Display Mode individual setting.
|
|
25
|
+
*/
|
|
26
|
+
static readonly DISPLAY_MODE_INDIVIDUAL: number;
|
|
27
|
+
/**
|
|
28
|
+
* Constant representing the Variation Group Display Mode merged setting.
|
|
29
|
+
*/
|
|
30
|
+
static readonly DISPLAY_MODE_MERGED: number;
|
|
31
|
+
/**
|
|
32
|
+
* Returns the id of the category.
|
|
33
|
+
*/
|
|
34
|
+
readonly ID: string;
|
|
35
|
+
/**
|
|
36
|
+
* Returns all outgoing recommendations for this category. The
|
|
37
|
+
* recommendations are sorted by their explicitly set order.
|
|
38
|
+
*/
|
|
39
|
+
readonly allRecommendations: Collection<Recommendation>;
|
|
40
|
+
/**
|
|
41
|
+
* Returns a collection of category assignments of the category.
|
|
42
|
+
*/
|
|
43
|
+
readonly categoryAssignments: Collection<CategoryAssignment>;
|
|
44
|
+
/**
|
|
45
|
+
* Returns the default sorting rule configured for this category,
|
|
46
|
+
* or `null` if there is no default rule to be applied for it.
|
|
47
|
+
*
|
|
48
|
+
* This method returns the default rule for the parent category if this
|
|
49
|
+
* category inherits one. The parent category may inherit its default
|
|
50
|
+
* rule from its parent, and so on, up to the root category.
|
|
51
|
+
*
|
|
52
|
+
* This method returns `null` if no ancestor category for this
|
|
53
|
+
* category has a default rule.
|
|
54
|
+
*/
|
|
55
|
+
readonly defaultSortingRule: SortingRule | null;
|
|
56
|
+
/**
|
|
57
|
+
* Returns the description of the catalog category for the current locale.
|
|
58
|
+
*/
|
|
59
|
+
readonly description: string | null;
|
|
60
|
+
/**
|
|
61
|
+
* Returns the Variation Groups Display Mode of the category or null if no display mode is defined.
|
|
62
|
+
*/
|
|
63
|
+
displayMode: number;
|
|
64
|
+
/**
|
|
65
|
+
* Returns the display name of the of the catalog category for the current locale.
|
|
66
|
+
*
|
|
67
|
+
* This value is intended to be used as the
|
|
68
|
+
* external visible name of the catalog category.
|
|
69
|
+
*/
|
|
70
|
+
readonly displayName: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Returns the image reference of this catalog category.
|
|
73
|
+
*/
|
|
74
|
+
readonly image: MediaFile;
|
|
75
|
+
/**
|
|
76
|
+
* Returns the collection of dw.catalog.CategoryLink objects for which this category
|
|
77
|
+
* is the target. If the source category of a link belongs to a different
|
|
78
|
+
* catalog than the catalog owning this category, it is not returned.
|
|
79
|
+
*/
|
|
80
|
+
readonly incomingCategoryLinks: Collection<CategoryLink>;
|
|
81
|
+
/**
|
|
82
|
+
* Returns the value indicating whether the catalog category is "currently
|
|
83
|
+
* online". A category is currently online if its online flag equals true
|
|
84
|
+
* and the current site date is within the date range defined by the
|
|
85
|
+
* onlineFrom and onlineTo attributes.
|
|
86
|
+
*/
|
|
87
|
+
readonly online: boolean;
|
|
88
|
+
/**
|
|
89
|
+
* Returns a collection of category assignments of the category where the
|
|
90
|
+
* referenced product is currently online. When checking the online status
|
|
91
|
+
* of the product, the online flag and the online from & to dates are taken
|
|
92
|
+
* into account. Online flag, online from & to dates set for the current site
|
|
93
|
+
* takes precedence over the default values.
|
|
94
|
+
*/
|
|
95
|
+
readonly onlineCategoryAssignments: Collection<CategoryAssignment>;
|
|
96
|
+
/**
|
|
97
|
+
* Returns the online status flag of the category.
|
|
98
|
+
*/
|
|
99
|
+
readonly onlineFlag: boolean;
|
|
100
|
+
/**
|
|
101
|
+
* Returns the date from which the category is online or valid.
|
|
102
|
+
*/
|
|
103
|
+
readonly onlineFrom: Date;
|
|
104
|
+
/**
|
|
105
|
+
* Returns the collection of dw.catalog.CategoryLink objects for
|
|
106
|
+
* which this category is the target. If the source category of a link
|
|
107
|
+
* belongs to a different catalog than the catalog owning this category, it
|
|
108
|
+
* is not returned. Additionally, this method will only return a link if the
|
|
109
|
+
* source category is currently online. A category is currently online if
|
|
110
|
+
* its online flag equals true and the current site date is within the date
|
|
111
|
+
* range defined by the onlineFrom and onlineTo attributes.
|
|
112
|
+
*/
|
|
113
|
+
readonly onlineIncomingCategoryLinks: Collection<CategoryLink>;
|
|
114
|
+
/**
|
|
115
|
+
* Returns the collection of dw.catalog.CategoryLink objects for
|
|
116
|
+
* which this category is the source. If the target category of a link
|
|
117
|
+
* belongs to a different catalog than the catalog owning this category, it
|
|
118
|
+
* is not returned. Additionally, this method will only return a link if the
|
|
119
|
+
* target category is currently online. A category is currently online if
|
|
120
|
+
* its online flag equals true and the current site date is within the date
|
|
121
|
+
* range defined by the onlineFrom and onlineTo attributes.
|
|
122
|
+
*/
|
|
123
|
+
readonly onlineOutgoingCategoryLinks: Collection<CategoryLink>;
|
|
124
|
+
/**
|
|
125
|
+
* Returns online products assigned to this category.
|
|
126
|
+
* Offline products are not included in the returned collection.
|
|
127
|
+
* When checking the online status of the product,
|
|
128
|
+
* the online flag and the online from & to dates are taken into account.
|
|
129
|
+
* Online flag, online from & to dates set for the current site takes precedence
|
|
130
|
+
* over the default values.
|
|
131
|
+
*
|
|
132
|
+
* The order of products in the returned collection corresponds to the
|
|
133
|
+
* defined explicit sorting of products in this category.
|
|
134
|
+
* @see dw.catalog.Category.hasOnlineProducts
|
|
135
|
+
*/
|
|
136
|
+
readonly onlineProducts: Collection<Product<any>>;
|
|
137
|
+
/**
|
|
138
|
+
* Returns a sorted collection of currently online subcategories of this
|
|
139
|
+
* catalog category.
|
|
140
|
+
*
|
|
141
|
+
* -
|
|
142
|
+
* A category is currently online if its online flag
|
|
143
|
+
* equals true and the current site date is within the date range defined by
|
|
144
|
+
* the onlineFrom and onlineTo attributes.
|
|
145
|
+
*
|
|
146
|
+
* -
|
|
147
|
+
* The returned collection is sorted by position. Subcategories marked as
|
|
148
|
+
* "unsorted" always appear after those marked as "sorted" but are otherwise
|
|
149
|
+
* not in any guaranteed order.
|
|
150
|
+
*
|
|
151
|
+
* -
|
|
152
|
+
* The returned collection contains direct subcategories only.
|
|
153
|
+
* @see dw.catalog.Category.hasOnlineSubCategories
|
|
154
|
+
*/
|
|
155
|
+
readonly onlineSubCategories: Collection<Category>;
|
|
156
|
+
/**
|
|
157
|
+
* Returns the date until which the category is online or valid.
|
|
158
|
+
*/
|
|
159
|
+
readonly onlineTo: Date;
|
|
160
|
+
/**
|
|
161
|
+
* Returns a list of outgoing recommendations for this category. This method
|
|
162
|
+
* behaves similarly to getRecommendations but additionally filters out
|
|
163
|
+
* recommendations for which the target product is unorderable according to
|
|
164
|
+
* its product availability model.
|
|
165
|
+
* @see dw.catalog.ProductAvailabilityModel.isOrderable
|
|
166
|
+
*/
|
|
167
|
+
readonly orderableRecommendations: Collection<Recommendation>;
|
|
168
|
+
/**
|
|
169
|
+
* Returns the collection of dw.catalog.CategoryLink objects for which this category
|
|
170
|
+
* is the source. If the target category of a link belongs to a different
|
|
171
|
+
* catalog than the catalog owning this category, it is not returned.
|
|
172
|
+
* The collection of links is sorted by the explicitly defined order
|
|
173
|
+
* for this category with unsorted links appearing at the end.
|
|
174
|
+
*/
|
|
175
|
+
readonly outgoingCategoryLinks: Collection<CategoryLink>;
|
|
176
|
+
/**
|
|
177
|
+
* Returns the page description of this category for the default locale or null if not defined.
|
|
178
|
+
*/
|
|
179
|
+
readonly pageDescription: string | null;
|
|
180
|
+
/**
|
|
181
|
+
* Returns the page keywords of this category for the default locale or null if not defined.
|
|
182
|
+
*/
|
|
183
|
+
readonly pageKeywords: string | null;
|
|
184
|
+
/**
|
|
185
|
+
* Returns the page title of this category for the default locale or null if not defined.
|
|
186
|
+
*/
|
|
187
|
+
readonly pageTitle: string | null;
|
|
188
|
+
/**
|
|
189
|
+
* Returns the page URL property of this category or null if not defined.
|
|
190
|
+
*/
|
|
191
|
+
readonly pageURL: string | null;
|
|
192
|
+
/**
|
|
193
|
+
* Returns the parent of this category.
|
|
194
|
+
*/
|
|
195
|
+
readonly parent: Category | null;
|
|
196
|
+
/**
|
|
197
|
+
* Returns this category's ProductAttributeModel, which makes access to the
|
|
198
|
+
* category's attribute information convenient. The model is calculated
|
|
199
|
+
* based on the attribute definitions assigned to this category and the
|
|
200
|
+
* global attribute definitions for the object type 'Product'.
|
|
201
|
+
*/
|
|
202
|
+
readonly productAttributeModel: ProductAttributeModel;
|
|
203
|
+
/**
|
|
204
|
+
* Returns all products assigned to this category.
|
|
205
|
+
* The order of products in the returned collection corresponds to the
|
|
206
|
+
* defined explicit sorting of products in this category.
|
|
207
|
+
* @see dw.catalog.Category.getOnlineProducts
|
|
208
|
+
*/
|
|
209
|
+
readonly products: Collection<Product<any>>;
|
|
210
|
+
/**
|
|
211
|
+
* Returns the outgoing recommendations for this category. If this category
|
|
212
|
+
* is not in the site catalog, or there is no site catalog, an empty
|
|
213
|
+
* collection is returned. Only recommendations for which the target
|
|
214
|
+
* product exists and is assigned to the site catalog are returned. The
|
|
215
|
+
* recommendations are sorted by their explicitly set order.
|
|
216
|
+
*/
|
|
217
|
+
readonly recommendations: Collection<Recommendation>;
|
|
218
|
+
/**
|
|
219
|
+
* Identifies if the category is the root category of its catalog.
|
|
220
|
+
*/
|
|
221
|
+
readonly root: boolean;
|
|
222
|
+
/**
|
|
223
|
+
* Returns the search placement of the category or null of no search placement is defined.
|
|
224
|
+
*/
|
|
225
|
+
searchPlacement: number;
|
|
226
|
+
/**
|
|
227
|
+
* Returns the search rank of the category or null of no search rank is defined.
|
|
228
|
+
*/
|
|
229
|
+
searchRank: number;
|
|
230
|
+
/**
|
|
231
|
+
* Returns the category's sitemap change frequency.
|
|
232
|
+
*/
|
|
233
|
+
readonly siteMapChangeFrequency: string;
|
|
234
|
+
/**
|
|
235
|
+
* Returns the category's sitemap inclusion.
|
|
236
|
+
*/
|
|
237
|
+
readonly siteMapIncluded: number;
|
|
238
|
+
/**
|
|
239
|
+
* Returns the category's sitemap priority.
|
|
240
|
+
*/
|
|
241
|
+
readonly siteMapPriority: number;
|
|
242
|
+
/**
|
|
243
|
+
* Returns a sorted collection of the subcategories of this catalog category,
|
|
244
|
+
* including both online and offline subcategories.
|
|
245
|
+
*
|
|
246
|
+
* -
|
|
247
|
+
* The returned collection is sorted by position. Subcategories marked as
|
|
248
|
+
* "unsorted" always appear after those marked as "sorted" but are otherwise
|
|
249
|
+
* not in any guaranteed order.
|
|
250
|
+
*
|
|
251
|
+
* -
|
|
252
|
+
* The returned collection contains direct subcategories only.
|
|
253
|
+
* @see dw.catalog.Category.getOnlineSubCategories
|
|
254
|
+
*/
|
|
255
|
+
readonly subCategories: Collection<Category>;
|
|
256
|
+
/**
|
|
257
|
+
* Returns the template property value , which is the file name of the template
|
|
258
|
+
* used to display the catalog category.
|
|
259
|
+
*/
|
|
260
|
+
readonly template: string;
|
|
261
|
+
/**
|
|
262
|
+
* Returns the thumbnail image reference of this catalog category.
|
|
263
|
+
*/
|
|
264
|
+
readonly thumbnail: MediaFile;
|
|
265
|
+
/**
|
|
266
|
+
* Returns true if the category is a top level category, but not the root
|
|
267
|
+
* category.
|
|
268
|
+
*/
|
|
269
|
+
readonly topLevel: boolean;
|
|
270
|
+
private constructor();
|
|
271
|
+
/**
|
|
272
|
+
* Returns all outgoing recommendations for this category. The
|
|
273
|
+
* recommendations are sorted by their explicitly set order.
|
|
274
|
+
*/
|
|
275
|
+
getAllRecommendations(): Collection<Recommendation>;
|
|
276
|
+
/**
|
|
277
|
+
* Returns all outgoing recommendations for this category which are of the
|
|
278
|
+
* specified type. The recommendations are sorted by their explicitly set
|
|
279
|
+
* order.
|
|
280
|
+
*/
|
|
281
|
+
getAllRecommendations(type: number): Collection<Recommendation>;
|
|
282
|
+
/**
|
|
283
|
+
* Returns a collection of category assignments of the category.
|
|
284
|
+
*/
|
|
285
|
+
getCategoryAssignments(): Collection<CategoryAssignment>;
|
|
286
|
+
/**
|
|
287
|
+
* Returns the default sorting rule configured for this category,
|
|
288
|
+
* or `null` if there is no default rule to be applied for it.
|
|
289
|
+
*
|
|
290
|
+
* This method returns the default rule for the parent category if this
|
|
291
|
+
* category inherits one. The parent category may inherit its default
|
|
292
|
+
* rule from its parent, and so on, up to the root category.
|
|
293
|
+
*
|
|
294
|
+
* This method returns `null` if no ancestor category for this
|
|
295
|
+
* category has a default rule.
|
|
296
|
+
*/
|
|
297
|
+
getDefaultSortingRule(): SortingRule | null;
|
|
298
|
+
/**
|
|
299
|
+
* Returns the description of the catalog category for the current locale.
|
|
300
|
+
*/
|
|
301
|
+
getDescription(): string | null;
|
|
302
|
+
/**
|
|
303
|
+
* Returns the Variation Groups Display Mode of the category or null if no display mode is defined.
|
|
304
|
+
*/
|
|
305
|
+
getDisplayMode(): number;
|
|
306
|
+
/**
|
|
307
|
+
* Returns the display name of the of the catalog category for the current locale.
|
|
308
|
+
*
|
|
309
|
+
* This value is intended to be used as the
|
|
310
|
+
* external visible name of the catalog category.
|
|
311
|
+
*/
|
|
312
|
+
getDisplayName(): string | null;
|
|
313
|
+
/**
|
|
314
|
+
* Returns the id of the category.
|
|
315
|
+
*/
|
|
316
|
+
getID(): string;
|
|
317
|
+
/**
|
|
318
|
+
* Returns the image reference of this catalog category.
|
|
319
|
+
*/
|
|
320
|
+
getImage(): MediaFile;
|
|
321
|
+
/**
|
|
322
|
+
* Returns the collection of dw.catalog.CategoryLink objects for which this category
|
|
323
|
+
* is the target. If the source category of a link belongs to a different
|
|
324
|
+
* catalog than the catalog owning this category, it is not returned.
|
|
325
|
+
*/
|
|
326
|
+
getIncomingCategoryLinks(): Collection<CategoryLink>;
|
|
327
|
+
/**
|
|
328
|
+
* Returns the collection of dw.catalog.CategoryLink objects for which this category
|
|
329
|
+
* is the target and which are of the specified type. If the source
|
|
330
|
+
* category of a link belongs to a different catalog than the catalog owning
|
|
331
|
+
* this category, it is not returned.
|
|
332
|
+
*/
|
|
333
|
+
getIncomingCategoryLinks(type: number): Collection<CategoryLink>;
|
|
334
|
+
/**
|
|
335
|
+
* Returns a collection of category assignments of the category where the
|
|
336
|
+
* referenced product is currently online. When checking the online status
|
|
337
|
+
* of the product, the online flag and the online from & to dates are taken
|
|
338
|
+
* into account. Online flag, online from & to dates set for the current site
|
|
339
|
+
* takes precedence over the default values.
|
|
340
|
+
*/
|
|
341
|
+
getOnlineCategoryAssignments(): Collection<CategoryAssignment>;
|
|
342
|
+
/**
|
|
343
|
+
* Returns the online status flag of the category.
|
|
344
|
+
*/
|
|
345
|
+
getOnlineFlag(): boolean;
|
|
346
|
+
/**
|
|
347
|
+
* Returns the date from which the category is online or valid.
|
|
348
|
+
*/
|
|
349
|
+
getOnlineFrom(): Date;
|
|
350
|
+
/**
|
|
351
|
+
* Returns the collection of dw.catalog.CategoryLink objects for
|
|
352
|
+
* which this category is the target. If the source category of a link
|
|
353
|
+
* belongs to a different catalog than the catalog owning this category, it
|
|
354
|
+
* is not returned. Additionally, this method will only return a link if the
|
|
355
|
+
* source category is currently online. A category is currently online if
|
|
356
|
+
* its online flag equals true and the current site date is within the date
|
|
357
|
+
* range defined by the onlineFrom and onlineTo attributes.
|
|
358
|
+
*/
|
|
359
|
+
getOnlineIncomingCategoryLinks(): Collection<CategoryLink>;
|
|
360
|
+
/**
|
|
361
|
+
* Returns the collection of dw.catalog.CategoryLink objects for
|
|
362
|
+
* which this category is the source. If the target category of a link
|
|
363
|
+
* belongs to a different catalog than the catalog owning this category, it
|
|
364
|
+
* is not returned. Additionally, this method will only return a link if the
|
|
365
|
+
* target category is currently online. A category is currently online if
|
|
366
|
+
* its online flag equals true and the current site date is within the date
|
|
367
|
+
* range defined by the onlineFrom and onlineTo attributes.
|
|
368
|
+
*/
|
|
369
|
+
getOnlineOutgoingCategoryLinks(): Collection<CategoryLink>;
|
|
370
|
+
/**
|
|
371
|
+
* Returns online products assigned to this category.
|
|
372
|
+
* Offline products are not included in the returned collection.
|
|
373
|
+
* When checking the online status of the product,
|
|
374
|
+
* the online flag and the online from & to dates are taken into account.
|
|
375
|
+
* Online flag, online from & to dates set for the current site takes precedence
|
|
376
|
+
* over the default values.
|
|
377
|
+
*
|
|
378
|
+
* The order of products in the returned collection corresponds to the
|
|
379
|
+
* defined explicit sorting of products in this category.
|
|
380
|
+
* @see dw.catalog.Category.hasOnlineProducts
|
|
381
|
+
*/
|
|
382
|
+
getOnlineProducts(): Collection<Product<any>>;
|
|
383
|
+
/**
|
|
384
|
+
* Returns a sorted collection of currently online subcategories of this
|
|
385
|
+
* catalog category.
|
|
386
|
+
*
|
|
387
|
+
* -
|
|
388
|
+
* A category is currently online if its online flag
|
|
389
|
+
* equals true and the current site date is within the date range defined by
|
|
390
|
+
* the onlineFrom and onlineTo attributes.
|
|
391
|
+
*
|
|
392
|
+
* -
|
|
393
|
+
* The returned collection is sorted by position. Subcategories marked as
|
|
394
|
+
* "unsorted" always appear after those marked as "sorted" but are otherwise
|
|
395
|
+
* not in any guaranteed order.
|
|
396
|
+
*
|
|
397
|
+
* -
|
|
398
|
+
* The returned collection contains direct subcategories only.
|
|
399
|
+
* @see dw.catalog.Category.hasOnlineSubCategories
|
|
400
|
+
*/
|
|
401
|
+
getOnlineSubCategories(): Collection<Category>;
|
|
402
|
+
/**
|
|
403
|
+
* Returns the date until which the category is online or valid.
|
|
404
|
+
*/
|
|
405
|
+
getOnlineTo(): Date;
|
|
406
|
+
/**
|
|
407
|
+
* Returns a list of outgoing recommendations for this category. This method
|
|
408
|
+
* behaves similarly to getRecommendations but additionally filters out
|
|
409
|
+
* recommendations for which the target product is unorderable according to
|
|
410
|
+
* its product availability model.
|
|
411
|
+
* @see dw.catalog.ProductAvailabilityModel.isOrderable
|
|
412
|
+
*/
|
|
413
|
+
getOrderableRecommendations(): Collection<Recommendation>;
|
|
414
|
+
/**
|
|
415
|
+
* Returns a list of outgoing recommendations for this category. This method
|
|
416
|
+
* behaves similarly to getRecommendations but additionally
|
|
417
|
+
* filters out recommendations for which the target product is unorderable
|
|
418
|
+
* according to its product availability model.
|
|
419
|
+
* @see dw.catalog.ProductAvailabilityModel.isOrderable
|
|
420
|
+
*/
|
|
421
|
+
getOrderableRecommendations(type: number): Collection<Recommendation>;
|
|
422
|
+
/**
|
|
423
|
+
* Returns the collection of dw.catalog.CategoryLink objects for which this category
|
|
424
|
+
* is the source. If the target category of a link belongs to a different
|
|
425
|
+
* catalog than the catalog owning this category, it is not returned.
|
|
426
|
+
* The collection of links is sorted by the explicitly defined order
|
|
427
|
+
* for this category with unsorted links appearing at the end.
|
|
428
|
+
*/
|
|
429
|
+
getOutgoingCategoryLinks(): Collection<CategoryLink>;
|
|
430
|
+
/**
|
|
431
|
+
* Returns the collection of dw.catalog.CategoryLink objects for which this category
|
|
432
|
+
* is the source and which are of the specified type. If the target
|
|
433
|
+
* category of a link belongs to a different catalog than the catalog owning
|
|
434
|
+
* this category, it is not returned. The collection of links is sorted by
|
|
435
|
+
* the explicitly defined order for this category with unsorted links
|
|
436
|
+
* appearing at the end.
|
|
437
|
+
*/
|
|
438
|
+
getOutgoingCategoryLinks(type: number): Collection<CategoryLink>;
|
|
439
|
+
/**
|
|
440
|
+
* Returns the page description of this category for the default locale or null if not defined.
|
|
441
|
+
*/
|
|
442
|
+
getPageDescription(): string | null;
|
|
443
|
+
/**
|
|
444
|
+
* Returns the page keywords of this category for the default locale or null if not defined.
|
|
445
|
+
*/
|
|
446
|
+
getPageKeywords(): string | null;
|
|
447
|
+
/**
|
|
448
|
+
* Returns the page title of this category for the default locale or null if not defined.
|
|
449
|
+
*/
|
|
450
|
+
getPageTitle(): string | null;
|
|
451
|
+
/**
|
|
452
|
+
* Returns the page URL property of this category or null if not defined.
|
|
453
|
+
*/
|
|
454
|
+
getPageURL(): string | null;
|
|
455
|
+
/**
|
|
456
|
+
* Returns the parent of this category.
|
|
457
|
+
*/
|
|
458
|
+
getParent(): Category | null;
|
|
459
|
+
/**
|
|
460
|
+
* Returns this category's ProductAttributeModel, which makes access to the
|
|
461
|
+
* category's attribute information convenient. The model is calculated
|
|
462
|
+
* based on the attribute definitions assigned to this category and the
|
|
463
|
+
* global attribute definitions for the object type 'Product'.
|
|
464
|
+
*/
|
|
465
|
+
getProductAttributeModel(): ProductAttributeModel;
|
|
466
|
+
/**
|
|
467
|
+
* Returns all products assigned to this category.
|
|
468
|
+
* The order of products in the returned collection corresponds to the
|
|
469
|
+
* defined explicit sorting of products in this category.
|
|
470
|
+
* @see dw.catalog.Category.getOnlineProducts
|
|
471
|
+
*/
|
|
472
|
+
getProducts(): Collection<Product<any>>;
|
|
473
|
+
/**
|
|
474
|
+
* Returns the outgoing recommendations for this category. If this category
|
|
475
|
+
* is not in the site catalog, or there is no site catalog, an empty
|
|
476
|
+
* collection is returned. Only recommendations for which the target
|
|
477
|
+
* product exists and is assigned to the site catalog are returned. The
|
|
478
|
+
* recommendations are sorted by their explicitly set order.
|
|
479
|
+
*/
|
|
480
|
+
getRecommendations(): Collection<Recommendation>;
|
|
481
|
+
/**
|
|
482
|
+
* Returns the outgoing recommendations for this category which are of the
|
|
483
|
+
* specified type. Behaves the same as getRecommendations but
|
|
484
|
+
* additionally filters by recommendation type.
|
|
485
|
+
*/
|
|
486
|
+
getRecommendations(type: number): Collection<Recommendation>;
|
|
487
|
+
/**
|
|
488
|
+
* Returns the search placement of the category or null of no search placement is defined.
|
|
489
|
+
*/
|
|
490
|
+
getSearchPlacement(): number;
|
|
491
|
+
/**
|
|
492
|
+
* Returns the search rank of the category or null of no search rank is defined.
|
|
493
|
+
*/
|
|
494
|
+
getSearchRank(): number;
|
|
495
|
+
/**
|
|
496
|
+
* Returns the category's sitemap change frequency.
|
|
497
|
+
*/
|
|
498
|
+
getSiteMapChangeFrequency(): string;
|
|
499
|
+
/**
|
|
500
|
+
* Returns the category's sitemap inclusion.
|
|
501
|
+
*/
|
|
502
|
+
getSiteMapIncluded(): number;
|
|
503
|
+
/**
|
|
504
|
+
* Returns the category's sitemap priority.
|
|
505
|
+
*/
|
|
506
|
+
getSiteMapPriority(): number;
|
|
507
|
+
/**
|
|
508
|
+
* Returns a sorted collection of the subcategories of this catalog category,
|
|
509
|
+
* including both online and offline subcategories.
|
|
510
|
+
*
|
|
511
|
+
* -
|
|
512
|
+
* The returned collection is sorted by position. Subcategories marked as
|
|
513
|
+
* "unsorted" always appear after those marked as "sorted" but are otherwise
|
|
514
|
+
* not in any guaranteed order.
|
|
515
|
+
*
|
|
516
|
+
* -
|
|
517
|
+
* The returned collection contains direct subcategories only.
|
|
518
|
+
* @see dw.catalog.Category.getOnlineSubCategories
|
|
519
|
+
*/
|
|
520
|
+
getSubCategories(): Collection<Category>;
|
|
521
|
+
/**
|
|
522
|
+
* Returns the template property value , which is the file name of the template
|
|
523
|
+
* used to display the catalog category.
|
|
524
|
+
*/
|
|
525
|
+
getTemplate(): string;
|
|
526
|
+
/**
|
|
527
|
+
* Returns the thumbnail image reference of this catalog category.
|
|
528
|
+
*/
|
|
529
|
+
getThumbnail(): MediaFile;
|
|
530
|
+
/**
|
|
531
|
+
* Returns true if this catalog category has any online products assigned.
|
|
532
|
+
* When checking the online status of the product,
|
|
533
|
+
* the online flag and the online from & to dates are taken into account.
|
|
534
|
+
* Online flag, online from & to dates set for the current site takes precedence
|
|
535
|
+
* over the default values.
|
|
536
|
+
* @see dw.catalog.Category.getOnlineProducts
|
|
537
|
+
*/
|
|
538
|
+
hasOnlineProducts(): boolean;
|
|
539
|
+
/**
|
|
540
|
+
* Returns true if this catalog category has any online subcategories.
|
|
541
|
+
*
|
|
542
|
+
* -
|
|
543
|
+
* A category is currently online if its online flag
|
|
544
|
+
* equals true and the current site date is within the date range defined by
|
|
545
|
+
* the onlineFrom and onlineTo attributes.
|
|
546
|
+
*
|
|
547
|
+
* -
|
|
548
|
+
* Only direct subcategories are considered.
|
|
549
|
+
* @see dw.catalog.Category.getOnlineSubCategories
|
|
550
|
+
*/
|
|
551
|
+
hasOnlineSubCategories(): boolean;
|
|
552
|
+
/**
|
|
553
|
+
* Returns true if this category is a direct sub-category of the provided
|
|
554
|
+
* category.
|
|
555
|
+
*/
|
|
556
|
+
isDirectSubCategoryOf(parent: Category): boolean;
|
|
557
|
+
/**
|
|
558
|
+
* Returns the value indicating whether the catalog category is "currently
|
|
559
|
+
* online". A category is currently online if its online flag equals true
|
|
560
|
+
* and the current site date is within the date range defined by the
|
|
561
|
+
* onlineFrom and onlineTo attributes.
|
|
562
|
+
*/
|
|
563
|
+
isOnline(): boolean;
|
|
564
|
+
/**
|
|
565
|
+
* Identifies if the category is the root category of its catalog.
|
|
566
|
+
*/
|
|
567
|
+
isRoot(): boolean;
|
|
568
|
+
/**
|
|
569
|
+
* Returns true if this category is a sub-category of the provided category.
|
|
570
|
+
* This can be either a direct or an indirect sub-category.
|
|
571
|
+
*/
|
|
572
|
+
isSubCategoryOf(ancestor: Category): boolean;
|
|
573
|
+
/**
|
|
574
|
+
* Returns true if the category is a top level category, but not the root
|
|
575
|
+
* category.
|
|
576
|
+
*/
|
|
577
|
+
isTopLevel(): boolean;
|
|
578
|
+
/**
|
|
579
|
+
* Set the category's Variation Groups Display Mode.
|
|
580
|
+
*/
|
|
581
|
+
setDisplayMode(displayMode: number): void;
|
|
582
|
+
/**
|
|
583
|
+
* Set the category's search placement.
|
|
584
|
+
*/
|
|
585
|
+
setSearchPlacement(placement: number): void;
|
|
586
|
+
/**
|
|
587
|
+
* Set the category's search rank.
|
|
588
|
+
*/
|
|
589
|
+
setSearchRank(rank: number): void;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export = Category;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import ExtensibleObject = require('../object/ExtensibleObject');
|
|
2
|
+
import CustomAttributes = require('../object/CustomAttributes');
|
|
3
|
+
import Category = require('./Category');
|
|
4
|
+
import Product = require('./Product');
|
|
5
|
+
import MarkupText = require('../content/MarkupText');
|
|
6
|
+
import MediaFile = require('../content/MediaFile');
|
|
7
|
+
|
|
8
|
+
declare global {
|
|
9
|
+
module ICustomAttributes {
|
|
10
|
+
interface CategoryAssignment extends CustomAttributes {
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Represents a category assignment in Commerce Cloud Digital.
|
|
17
|
+
*/
|
|
18
|
+
declare class CategoryAssignment extends ExtensibleObject<ICustomAttributes.CategoryAssignment> {
|
|
19
|
+
/**
|
|
20
|
+
* Returns the category assignment's callout message in the current locale.
|
|
21
|
+
*/
|
|
22
|
+
readonly calloutMsg: MarkupText | null;
|
|
23
|
+
/**
|
|
24
|
+
* Returns the category to which this category assignment is bound.
|
|
25
|
+
*/
|
|
26
|
+
readonly category: Category;
|
|
27
|
+
/**
|
|
28
|
+
* Returns the category assignment's image.
|
|
29
|
+
*/
|
|
30
|
+
readonly image: MediaFile;
|
|
31
|
+
/**
|
|
32
|
+
* Returns the category assignment's long description in the current locale.
|
|
33
|
+
*/
|
|
34
|
+
readonly longDescription: MarkupText | null;
|
|
35
|
+
/**
|
|
36
|
+
* Returns the name of the category assignment in the current locale.
|
|
37
|
+
*/
|
|
38
|
+
readonly name: string | null;
|
|
39
|
+
/**
|
|
40
|
+
* Returns the product to which this category assignment is bound.
|
|
41
|
+
*/
|
|
42
|
+
readonly product: Product<any>;
|
|
43
|
+
/**
|
|
44
|
+
* Returns the category assignment's short description in the current locale.
|
|
45
|
+
*/
|
|
46
|
+
readonly shortDescription: MarkupText | null;
|
|
47
|
+
private constructor();
|
|
48
|
+
/**
|
|
49
|
+
* Returns the category assignment's callout message in the current locale.
|
|
50
|
+
*/
|
|
51
|
+
getCalloutMsg(): MarkupText | null;
|
|
52
|
+
/**
|
|
53
|
+
* Returns the category to which this category assignment is bound.
|
|
54
|
+
*/
|
|
55
|
+
getCategory(): Category;
|
|
56
|
+
/**
|
|
57
|
+
* Returns the category assignment's image.
|
|
58
|
+
*/
|
|
59
|
+
getImage(): MediaFile;
|
|
60
|
+
/**
|
|
61
|
+
* Returns the category assignment's long description in the current locale.
|
|
62
|
+
*/
|
|
63
|
+
getLongDescription(): MarkupText | null;
|
|
64
|
+
/**
|
|
65
|
+
* Returns the name of the category assignment in the current locale.
|
|
66
|
+
*/
|
|
67
|
+
getName(): string | null;
|
|
68
|
+
/**
|
|
69
|
+
* Returns the product to which this category assignment is bound.
|
|
70
|
+
*/
|
|
71
|
+
getProduct(): Product<any>;
|
|
72
|
+
/**
|
|
73
|
+
* Returns the category assignment's short description in the current locale.
|
|
74
|
+
*/
|
|
75
|
+
getShortDescription(): MarkupText | null;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export = CategoryAssignment;
|