@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/content/Content.d.ts
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
import ExtensibleObject = require('../object/ExtensibleObject');
|
|
2
|
+
import CustomAttributes = require('../object/CustomAttributes');
|
|
3
|
+
import Page = require('../experience/Page');
|
|
4
|
+
import Collection = require('../util/Collection');
|
|
5
|
+
import Folder = require('./Folder');
|
|
6
|
+
import PageMetaTag = require('../web/PageMetaTag');
|
|
7
|
+
|
|
8
|
+
declare global {
|
|
9
|
+
module ICustomAttributes {
|
|
10
|
+
interface Content extends CustomAttributes {
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Class representing a Content asset in Commerce Cloud Digital.
|
|
17
|
+
*/
|
|
18
|
+
declare class Content extends ExtensibleObject<ICustomAttributes.Content> {
|
|
19
|
+
/**
|
|
20
|
+
* Returns the ID of the content asset.
|
|
21
|
+
*/
|
|
22
|
+
readonly ID: string;
|
|
23
|
+
/**
|
|
24
|
+
* Returns the Folder associated with this Content. The folder is
|
|
25
|
+
* used to determine the classification of the content.
|
|
26
|
+
*/
|
|
27
|
+
readonly classificationFolder: Folder;
|
|
28
|
+
/**
|
|
29
|
+
* Returns the description in the current locale or null.
|
|
30
|
+
*/
|
|
31
|
+
readonly description: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* Returns all folders to which this content is assigned.
|
|
34
|
+
*/
|
|
35
|
+
readonly folders: Collection<Folder>;
|
|
36
|
+
/**
|
|
37
|
+
* Returns the name of the content asset.
|
|
38
|
+
*/
|
|
39
|
+
readonly name: string;
|
|
40
|
+
/**
|
|
41
|
+
* Returns the online status of the content.
|
|
42
|
+
*/
|
|
43
|
+
readonly online: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Returns the online status flag of the content.
|
|
46
|
+
*/
|
|
47
|
+
readonly onlineFlag: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Returns if the content is a dw.experience.Page or not.
|
|
50
|
+
*/
|
|
51
|
+
readonly page: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Returns the page description for the content in the current locale
|
|
54
|
+
* or null if there is no page description.
|
|
55
|
+
*/
|
|
56
|
+
readonly pageDescription: string | null;
|
|
57
|
+
/**
|
|
58
|
+
* Returns the page keywords for the content in the current locale
|
|
59
|
+
* or null if there is no page title.
|
|
60
|
+
*/
|
|
61
|
+
readonly pageKeywords: string | null;
|
|
62
|
+
/**
|
|
63
|
+
* Returns all page meta tags, defined for this instance for which content can be generated.
|
|
64
|
+
*
|
|
65
|
+
* The meta tag content is generated based on the content detail page meta tag context and rules.
|
|
66
|
+
* The rules are obtained from the current content or inherited from the default folder,
|
|
67
|
+
* up to the root folder.
|
|
68
|
+
*/
|
|
69
|
+
readonly pageMetaTags: Array<PageMetaTag>;
|
|
70
|
+
/**
|
|
71
|
+
* Returns the page title for the content in the current locale
|
|
72
|
+
* or null if there is no page title.
|
|
73
|
+
*/
|
|
74
|
+
readonly pageTitle: string | null;
|
|
75
|
+
/**
|
|
76
|
+
* Returns the page URL for the content in the current locale
|
|
77
|
+
* or null if there is no page URL.
|
|
78
|
+
*/
|
|
79
|
+
readonly pageURL: string | null;
|
|
80
|
+
/**
|
|
81
|
+
* Returns the search status of the content.
|
|
82
|
+
*/
|
|
83
|
+
readonly searchable: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Returns the online status flag of the content.
|
|
86
|
+
*/
|
|
87
|
+
readonly searchableFlag: boolean;
|
|
88
|
+
/**
|
|
89
|
+
* Returns the contents change frequency needed for the sitemap creation.
|
|
90
|
+
*/
|
|
91
|
+
readonly siteMapChangeFrequency: string;
|
|
92
|
+
/**
|
|
93
|
+
* Returns the status if the content is included into the sitemap.
|
|
94
|
+
*/
|
|
95
|
+
readonly siteMapIncluded: number;
|
|
96
|
+
/**
|
|
97
|
+
* Returns the contents priority needed for the sitemap creation.
|
|
98
|
+
* If no priority is defined, the method returns 0.0.
|
|
99
|
+
*/
|
|
100
|
+
readonly siteMapPriority: number;
|
|
101
|
+
/**
|
|
102
|
+
* Returns the value of attribute 'template'.
|
|
103
|
+
*/
|
|
104
|
+
readonly template: string;
|
|
105
|
+
private constructor();
|
|
106
|
+
/**
|
|
107
|
+
* Returns the Folder associated with this Content. The folder is
|
|
108
|
+
* used to determine the classification of the content.
|
|
109
|
+
*/
|
|
110
|
+
getClassificationFolder(): Folder;
|
|
111
|
+
/**
|
|
112
|
+
* Returns the description in the current locale or null.
|
|
113
|
+
*/
|
|
114
|
+
getDescription(): string | null;
|
|
115
|
+
/**
|
|
116
|
+
* Returns all folders to which this content is assigned.
|
|
117
|
+
*/
|
|
118
|
+
getFolders(): Collection<Folder>;
|
|
119
|
+
/**
|
|
120
|
+
* Returns the ID of the content asset.
|
|
121
|
+
*/
|
|
122
|
+
getID(): string;
|
|
123
|
+
/**
|
|
124
|
+
* Returns the name of the content asset.
|
|
125
|
+
*/
|
|
126
|
+
getName(): string;
|
|
127
|
+
/**
|
|
128
|
+
* Returns the online status flag of the content.
|
|
129
|
+
*/
|
|
130
|
+
getOnlineFlag(): boolean;
|
|
131
|
+
/**
|
|
132
|
+
* Returns the page description for the content in the current locale
|
|
133
|
+
* or null if there is no page description.
|
|
134
|
+
*/
|
|
135
|
+
getPageDescription(): string | null;
|
|
136
|
+
/**
|
|
137
|
+
* Returns the page keywords for the content in the current locale
|
|
138
|
+
* or null if there is no page title.
|
|
139
|
+
*/
|
|
140
|
+
getPageKeywords(): string | null;
|
|
141
|
+
/**
|
|
142
|
+
* Returns the page meta tag for the specified id.
|
|
143
|
+
*
|
|
144
|
+
* The meta tag content is generated based on the content detail page meta tag context and rule.
|
|
145
|
+
* The rule is obtained from the current content or inherited from the default folder,
|
|
146
|
+
* up to the root folder.
|
|
147
|
+
*
|
|
148
|
+
* Null will be returned if the meta tag is undefined on the current instance, or if no rule can be found for the
|
|
149
|
+
* current context, or if the rule resolves to an empty string.
|
|
150
|
+
*/
|
|
151
|
+
getPageMetaTag(id: string): PageMetaTag | null;
|
|
152
|
+
/**
|
|
153
|
+
* Returns all page meta tags, defined for this instance for which content can be generated.
|
|
154
|
+
*
|
|
155
|
+
* The meta tag content is generated based on the content detail page meta tag context and rules.
|
|
156
|
+
* The rules are obtained from the current content or inherited from the default folder,
|
|
157
|
+
* up to the root folder.
|
|
158
|
+
*/
|
|
159
|
+
getPageMetaTags(): Array<PageMetaTag>;
|
|
160
|
+
/**
|
|
161
|
+
* Returns the page title for the content in the current locale
|
|
162
|
+
* or null if there is no page title.
|
|
163
|
+
*/
|
|
164
|
+
getPageTitle(): string | null;
|
|
165
|
+
/**
|
|
166
|
+
* Returns the page URL for the content in the current locale
|
|
167
|
+
* or null if there is no page URL.
|
|
168
|
+
*/
|
|
169
|
+
getPageURL(): string | null;
|
|
170
|
+
/**
|
|
171
|
+
* Returns the online status flag of the content.
|
|
172
|
+
*/
|
|
173
|
+
getSearchableFlag(): boolean;
|
|
174
|
+
/**
|
|
175
|
+
* Returns the contents change frequency needed for the sitemap creation.
|
|
176
|
+
*/
|
|
177
|
+
getSiteMapChangeFrequency(): string;
|
|
178
|
+
/**
|
|
179
|
+
* Returns the status if the content is included into the sitemap.
|
|
180
|
+
*/
|
|
181
|
+
getSiteMapIncluded(): number;
|
|
182
|
+
/**
|
|
183
|
+
* Returns the contents priority needed for the sitemap creation.
|
|
184
|
+
* If no priority is defined, the method returns 0.0.
|
|
185
|
+
*/
|
|
186
|
+
getSiteMapPriority(): number;
|
|
187
|
+
/**
|
|
188
|
+
* Returns the value of attribute 'template'.
|
|
189
|
+
*/
|
|
190
|
+
getTemplate(): string;
|
|
191
|
+
/**
|
|
192
|
+
* Returns the online status of the content.
|
|
193
|
+
*/
|
|
194
|
+
isOnline(): boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Returns if the content is a dw.experience.Page or not.
|
|
197
|
+
*/
|
|
198
|
+
isPage(): boolean;
|
|
199
|
+
/**
|
|
200
|
+
* Returns the search status of the content.
|
|
201
|
+
*/
|
|
202
|
+
isSearchable(): boolean;
|
|
203
|
+
/**
|
|
204
|
+
* Converts the content into the dw.experience.Page representation if isPage yields true.
|
|
205
|
+
* @see dw.experience.PageMgr.getPage
|
|
206
|
+
*/
|
|
207
|
+
toPage(): Page | null;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export = Content;
|
package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/content/ContentMgr.d.ts
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import Folder = require('./Folder');
|
|
2
|
+
import Library = require('./Library');
|
|
3
|
+
import Content = require('./Content');
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Provides helper methods for getting content assets, library folders and the
|
|
7
|
+
* content library of the current site.
|
|
8
|
+
*/
|
|
9
|
+
declare class ContentMgr {
|
|
10
|
+
/**
|
|
11
|
+
* The input string to identify that the library is a private site library when invoking getLibrary.
|
|
12
|
+
*/
|
|
13
|
+
static readonly PRIVATE_LIBRARY = "PrivateLibrary";
|
|
14
|
+
/**
|
|
15
|
+
* Returns the content library of the current site.
|
|
16
|
+
*/
|
|
17
|
+
static readonly siteLibrary: Library | null;
|
|
18
|
+
private constructor();
|
|
19
|
+
/**
|
|
20
|
+
* Returns the content with the corresponding identifier within the current
|
|
21
|
+
* site's site library.
|
|
22
|
+
*/
|
|
23
|
+
static getContent(id: string): Content | null;
|
|
24
|
+
/**
|
|
25
|
+
* Returns the content with the corresponding identifier within the specified library.
|
|
26
|
+
*/
|
|
27
|
+
static getContent(library: Library, id: string): Content | null;
|
|
28
|
+
/**
|
|
29
|
+
* Returns the folder identified by the specified id within the current
|
|
30
|
+
* site's site library.
|
|
31
|
+
*/
|
|
32
|
+
static getFolder(id: string): Folder | null;
|
|
33
|
+
/**
|
|
34
|
+
* Returns the folder identified by the specified id within the specified library.
|
|
35
|
+
*/
|
|
36
|
+
static getFolder(library: Library, id: string): Folder | null;
|
|
37
|
+
/**
|
|
38
|
+
* Returns the content library specified by the given id. If PRIVATE_LIBRARY is used, then the current
|
|
39
|
+
* site's private library will be returned.
|
|
40
|
+
*/
|
|
41
|
+
static getLibrary(libraryId: string): Library | null;
|
|
42
|
+
/**
|
|
43
|
+
* Returns the content library of the current site.
|
|
44
|
+
*/
|
|
45
|
+
static getSiteLibrary(): Library | null;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export = ContentMgr;
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
import SearchModel = require('../catalog/SearchModel');
|
|
2
|
+
import URL = require('../web/URL');
|
|
3
|
+
import SearchStatus = require('../system/SearchStatus');
|
|
4
|
+
import utilIterator = require('../util/Iterator');
|
|
5
|
+
import Folder = require('./Folder');
|
|
6
|
+
import ContentSearchRefinements = require('./ContentSearchRefinements');
|
|
7
|
+
import PageMetaTag = require('../web/PageMetaTag');
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* The class is the central interface to a content search result and a content
|
|
11
|
+
* search refinement. It also provides utility methods to generate a search URL.
|
|
12
|
+
*/
|
|
13
|
+
declare class ContentSearchModel extends SearchModel {
|
|
14
|
+
/**
|
|
15
|
+
* URL Parameter for the content ID
|
|
16
|
+
*/
|
|
17
|
+
static readonly CONTENTID_PARAMETER = "cid";
|
|
18
|
+
/**
|
|
19
|
+
* URL Parameter for the folder ID
|
|
20
|
+
*/
|
|
21
|
+
static readonly FOLDERID_PARAMETER = "fdid";
|
|
22
|
+
/**
|
|
23
|
+
* Returns an Iterator containing all Content Assets that are the result of the
|
|
24
|
+
* search.
|
|
25
|
+
*/
|
|
26
|
+
readonly content: utilIterator<any>;
|
|
27
|
+
/**
|
|
28
|
+
* Returns the content ID against which the search results apply.
|
|
29
|
+
*/
|
|
30
|
+
contentID: string;
|
|
31
|
+
/**
|
|
32
|
+
* Returns the deepest common folder of all content assets in the search result.
|
|
33
|
+
*/
|
|
34
|
+
readonly deepestCommonFolder: Folder;
|
|
35
|
+
/**
|
|
36
|
+
* The method returns true, if the content search result is filtered by the folder and it is not subsequently
|
|
37
|
+
* possible to search for content assets that belong to no folder (e.g. those for Page Designer).
|
|
38
|
+
*/
|
|
39
|
+
filteredByFolder: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Returns the folder against which the search results apply.
|
|
42
|
+
*/
|
|
43
|
+
readonly folder: Folder;
|
|
44
|
+
/**
|
|
45
|
+
* Returns the folder ID against which the search results apply.
|
|
46
|
+
*/
|
|
47
|
+
folderID: string;
|
|
48
|
+
/**
|
|
49
|
+
* The method returns true, if this is a pure search for a folder. The
|
|
50
|
+
* method checks, that a folder ID is specified and no search phrase is
|
|
51
|
+
* specified.
|
|
52
|
+
*/
|
|
53
|
+
readonly folderSearch: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Returns all page meta tags, defined for this instance for which content can be generated.
|
|
56
|
+
*
|
|
57
|
+
* The meta tag content is generated based on the content listing page meta tag context and rules.
|
|
58
|
+
* The rules are obtained from the current folder context or inherited from the parent folder,
|
|
59
|
+
* up to the root folder.
|
|
60
|
+
*/
|
|
61
|
+
readonly pageMetaTags: Array<PageMetaTag>;
|
|
62
|
+
/**
|
|
63
|
+
* Get the flag that determines if the folder search will
|
|
64
|
+
* be recursive.
|
|
65
|
+
*/
|
|
66
|
+
recursiveFolderSearch: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* The method returns true, if the search is refined by a folder.
|
|
69
|
+
* The method checks, that a folder ID is specified.
|
|
70
|
+
*/
|
|
71
|
+
readonly refinedByFolder: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Identifies if this is a folder search and is refined with further
|
|
74
|
+
* criteria, like a name refinement or an attribute refinement.
|
|
75
|
+
*/
|
|
76
|
+
readonly refinedFolderSearch: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Returns the set of search refinements used in this search.
|
|
79
|
+
*/
|
|
80
|
+
readonly refinements: ContentSearchRefinements;
|
|
81
|
+
/**
|
|
82
|
+
* Constructs a new ContentSearchModel.
|
|
83
|
+
*/
|
|
84
|
+
constructor();
|
|
85
|
+
/**
|
|
86
|
+
* Returns an URL that you can use to execute a query for a specific
|
|
87
|
+
* Content. The passed action is used to build an initial url. All search
|
|
88
|
+
* specific attributes are appended.
|
|
89
|
+
*/
|
|
90
|
+
static urlForContent(action: string, cid: string): URL;
|
|
91
|
+
/**
|
|
92
|
+
* Returns an URL that you can use to execute a query for a specific
|
|
93
|
+
* Content. The passed url can be either a full url or just the name for a
|
|
94
|
+
* pipeline. In the later case a relative URL is created.
|
|
95
|
+
*/
|
|
96
|
+
static urlForContent(url: URL, cid: string): URL;
|
|
97
|
+
/**
|
|
98
|
+
* Returns an URL that you can use to execute a query for a specific
|
|
99
|
+
* Folder.
|
|
100
|
+
*/
|
|
101
|
+
static urlForFolder(action: string, fid: string): URL;
|
|
102
|
+
/**
|
|
103
|
+
* Returns an URL that you can use to execute a query for a specific
|
|
104
|
+
* Folder.
|
|
105
|
+
*/
|
|
106
|
+
static urlForFolder(url: URL, fid: string): URL;
|
|
107
|
+
/**
|
|
108
|
+
* Returns an URL that you can use to execute a query for a specific
|
|
109
|
+
* attribute name-value pair.
|
|
110
|
+
*/
|
|
111
|
+
static urlForRefine(action: string, name: string, value: string): URL;
|
|
112
|
+
/**
|
|
113
|
+
* Returns an URL that you can use to execute a query for a specific
|
|
114
|
+
* attribute name-value pair.
|
|
115
|
+
*/
|
|
116
|
+
static urlForRefine(url: URL, name: string, value: string): URL;
|
|
117
|
+
/**
|
|
118
|
+
* Returns an Iterator containing all Content Assets that are the result of the
|
|
119
|
+
* search.
|
|
120
|
+
*/
|
|
121
|
+
getContent(): utilIterator<any>;
|
|
122
|
+
/**
|
|
123
|
+
* Returns the content ID against which the search results apply.
|
|
124
|
+
*/
|
|
125
|
+
getContentID(): string;
|
|
126
|
+
/**
|
|
127
|
+
* Returns the deepest common folder of all content assets in the search result.
|
|
128
|
+
*/
|
|
129
|
+
getDeepestCommonFolder(): Folder;
|
|
130
|
+
/**
|
|
131
|
+
* Returns the folder against which the search results apply.
|
|
132
|
+
*/
|
|
133
|
+
getFolder(): Folder;
|
|
134
|
+
/**
|
|
135
|
+
* Returns the folder ID against which the search results apply.
|
|
136
|
+
*/
|
|
137
|
+
getFolderID(): string;
|
|
138
|
+
/**
|
|
139
|
+
* Returns the page meta tag for the specified id.
|
|
140
|
+
*
|
|
141
|
+
* The meta tag content is generated based on the content listing page meta tag context and rule.
|
|
142
|
+
* The rule is obtained from the current folder context or inherited from the parent folder,
|
|
143
|
+
* up to the root folder.
|
|
144
|
+
*
|
|
145
|
+
* Null will be returned if the meta tag is undefined on the current instance, or if no rule can be found for the
|
|
146
|
+
* current context, or if the rule resolves to an empty string.
|
|
147
|
+
*/
|
|
148
|
+
getPageMetaTag(id: string): PageMetaTag | null;
|
|
149
|
+
/**
|
|
150
|
+
* Returns all page meta tags, defined for this instance for which content can be generated.
|
|
151
|
+
*
|
|
152
|
+
* The meta tag content is generated based on the content listing page meta tag context and rules.
|
|
153
|
+
* The rules are obtained from the current folder context or inherited from the parent folder,
|
|
154
|
+
* up to the root folder.
|
|
155
|
+
*/
|
|
156
|
+
getPageMetaTags(): Array<PageMetaTag>;
|
|
157
|
+
/**
|
|
158
|
+
* Returns the set of search refinements used in this search.
|
|
159
|
+
*/
|
|
160
|
+
getRefinements(): ContentSearchRefinements;
|
|
161
|
+
/**
|
|
162
|
+
* The method returns true, if the content search result is filtered by the folder and it is not subsequently
|
|
163
|
+
* possible to search for content assets that belong to no folder (e.g. those for Page Designer).
|
|
164
|
+
*/
|
|
165
|
+
isFilteredByFolder(): boolean;
|
|
166
|
+
/**
|
|
167
|
+
* The method returns true, if this is a pure search for a folder. The
|
|
168
|
+
* method checks, that a folder ID is specified and no search phrase is
|
|
169
|
+
* specified.
|
|
170
|
+
*/
|
|
171
|
+
isFolderSearch(): boolean;
|
|
172
|
+
/**
|
|
173
|
+
* Get the flag that determines if the folder search will
|
|
174
|
+
* be recursive.
|
|
175
|
+
*/
|
|
176
|
+
isRecursiveFolderSearch(): boolean;
|
|
177
|
+
/**
|
|
178
|
+
* The method returns true, if the search is refined by a folder.
|
|
179
|
+
* The method checks, that a folder ID is specified.
|
|
180
|
+
*/
|
|
181
|
+
isRefinedByFolder(): boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Identifies if this is a folder search and is refined with further
|
|
184
|
+
* criteria, like a name refinement or an attribute refinement.
|
|
185
|
+
*/
|
|
186
|
+
isRefinedFolderSearch(): boolean;
|
|
187
|
+
/**
|
|
188
|
+
* Execute the search.
|
|
189
|
+
*/
|
|
190
|
+
search(): SearchStatus;
|
|
191
|
+
/**
|
|
192
|
+
* Sets the contentID used in this search.
|
|
193
|
+
*/
|
|
194
|
+
setContentID(contentID: string): void;
|
|
195
|
+
/**
|
|
196
|
+
* Set a flag to indicate if the search is filtered by the folder. Must be set to false to return content assets that
|
|
197
|
+
* do not belong to any folder.
|
|
198
|
+
*/
|
|
199
|
+
setFilteredByFolder(filteredByFolder: boolean): void;
|
|
200
|
+
/**
|
|
201
|
+
* Sets the folderID used in this search.
|
|
202
|
+
*/
|
|
203
|
+
setFolderID(folderID: string): void;
|
|
204
|
+
/**
|
|
205
|
+
* Set a flag to indicate if the search in folder should be recursive.
|
|
206
|
+
*/
|
|
207
|
+
setRecursiveFolderSearch(recurse: boolean): void;
|
|
208
|
+
/**
|
|
209
|
+
* Returns an URL that you can use to re-execute the query using the
|
|
210
|
+
* specified pipeline action and folder refinement.
|
|
211
|
+
*/
|
|
212
|
+
urlRefineFolder(action: string, refineFolderID: string): URL;
|
|
213
|
+
/**
|
|
214
|
+
* Returns an URL that you can use to re-execute the query using the
|
|
215
|
+
* specified URL and folder refinement.
|
|
216
|
+
*/
|
|
217
|
+
urlRefineFolder(url: URL, refineFolderID: string): URL;
|
|
218
|
+
/**
|
|
219
|
+
* Returns an URL that you can use to re-execute the query with no folder
|
|
220
|
+
* refinement.
|
|
221
|
+
*/
|
|
222
|
+
urlRelaxFolder(action: string): URL;
|
|
223
|
+
/**
|
|
224
|
+
* Returns an URL that you can use to re-execute the query with no folder
|
|
225
|
+
* refinement.
|
|
226
|
+
*/
|
|
227
|
+
urlRelaxFolder(url: URL): URL;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export = ContentSearchModel;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import SearchRefinementDefinition = require('../catalog/SearchRefinementDefinition');
|
|
2
|
+
import ExtensibleObject = require('../object/ExtensibleObject');
|
|
3
|
+
import CustomAttributes = require('../object/CustomAttributes');
|
|
4
|
+
|
|
5
|
+
declare global {
|
|
6
|
+
module ICustomAttributes {
|
|
7
|
+
interface ContentSearchRefinementDefinition extends ICustomAttributes.SearchRefinementDefinition {
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* This class provides an interface to refinement options for content search.
|
|
14
|
+
*/
|
|
15
|
+
declare class ContentSearchRefinementDefinition extends SearchRefinementDefinition<ICustomAttributes.ContentSearchRefinementDefinition> {
|
|
16
|
+
/**
|
|
17
|
+
* Identifies if this is a folder refinement.
|
|
18
|
+
*/
|
|
19
|
+
readonly folderRefinement: boolean;
|
|
20
|
+
private constructor();
|
|
21
|
+
/**
|
|
22
|
+
* Identifies if this is a folder refinement.
|
|
23
|
+
*/
|
|
24
|
+
isFolderRefinement(): boolean;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export = ContentSearchRefinementDefinition;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import SearchRefinementValue = require('../catalog/SearchRefinementValue');
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Represents the value of a content search refinement.
|
|
5
|
+
*/
|
|
6
|
+
declare class ContentSearchRefinementValue extends SearchRefinementValue {
|
|
7
|
+
private constructor();
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export = ContentSearchRefinementValue;
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import SearchRefinements = require('../catalog/SearchRefinements');
|
|
2
|
+
import Collection = require('../util/Collection');
|
|
3
|
+
import Folder = require('./Folder');
|
|
4
|
+
import ContentSearchRefinementDefinition = require('./ContentSearchRefinementDefinition');
|
|
5
|
+
import SearchRefinementValue = require('../catalog/SearchRefinementValue');
|
|
6
|
+
import ContentSearchRefinementValue = require('./ContentSearchRefinementValue');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* This class provides an interface to refinement options for the content asset
|
|
10
|
+
* search. In a typical usage, the client application UI displays the search
|
|
11
|
+
* refinements along with the search results and allows customers to "refine"
|
|
12
|
+
* the results (i.e. limit the results that are shown) by specifying additional
|
|
13
|
+
* criteria, or "relax" (i.e. broaden) the results after previously refining.
|
|
14
|
+
* The two types of content search refinements are:
|
|
15
|
+
*
|
|
16
|
+
* - Refine By Folder: Limit the content assets to those assigned to
|
|
17
|
+
* specific child/ancestor folder of the search folder.
|
|
18
|
+
* - Refine By Attribute: Limit the content assets to those with
|
|
19
|
+
* specific values for a given attribute. Values may be grouped into "buckets"
|
|
20
|
+
* so that a given set of values are represented as a single refinement option.
|
|
21
|
+
*
|
|
22
|
+
* Rendering a content search refinement UI typically begins with iterating the
|
|
23
|
+
* refinement definitions for the search result. Call
|
|
24
|
+
* dw.catalog.SearchRefinements.getRefinementDefinitions or
|
|
25
|
+
* dw.catalog.SearchRefinements.getAllRefinementDefinitions to
|
|
26
|
+
* retrieve the appropriate collection of refinement definitions. For each
|
|
27
|
+
* definition, display the available refinement values by calling
|
|
28
|
+
* getAllRefinementValues. Depending
|
|
29
|
+
* on the type of the refinement definition, the application must use slightly
|
|
30
|
+
* different logic to display the refinement widgets. For all 2 types, methods
|
|
31
|
+
* in dw.content.ContentSearchModel are used to generate URLs to render
|
|
32
|
+
* hyperlinks in the UI. When clicked, these links trigger a call to the Search
|
|
33
|
+
* pipelet which in turn applies the appropriate filters to the native search
|
|
34
|
+
* result.
|
|
35
|
+
*/
|
|
36
|
+
declare class ContentSearchRefinements extends SearchRefinements {
|
|
37
|
+
/**
|
|
38
|
+
* Returns the appropriate folder refinement definition based on the search
|
|
39
|
+
* result. The folder refinement definition returned will be the first that
|
|
40
|
+
* can be found traversing the folder tree upward starting at the deepest
|
|
41
|
+
* common folder of the search result.
|
|
42
|
+
*/
|
|
43
|
+
readonly folderRefinementDefinition: ContentSearchRefinementDefinition | null;
|
|
44
|
+
/**
|
|
45
|
+
* Returns a collection of matching folders.
|
|
46
|
+
*/
|
|
47
|
+
readonly matchingFolders: Collection<Folder>;
|
|
48
|
+
private constructor();
|
|
49
|
+
getAllRefinementValues(attributeName: string): Collection<SearchRefinementValue> | null;
|
|
50
|
+
getAllRefinementValues(attributeName: string, sortMode: number, sortDirection: number): Collection<SearchRefinementValue>;
|
|
51
|
+
/**
|
|
52
|
+
* Returns a sorted collection of refinement values for the given refinement
|
|
53
|
+
* definition. The returned collection includes all refinement values for
|
|
54
|
+
* which the hit count is greater than 0 within the search result when the
|
|
55
|
+
* passed refinement definitions is excluded from filtering the search hits
|
|
56
|
+
* but all other refinement filters are still applied. This is useful for
|
|
57
|
+
* rendering broadening options for the refinement definitions that the
|
|
58
|
+
* search is already refined by. It is important to note that this method
|
|
59
|
+
* does NOT return refinement values independent of the search result.
|
|
60
|
+
*/
|
|
61
|
+
getAllRefinementValues(definition: ContentSearchRefinementDefinition): Collection<SearchRefinementValue>;
|
|
62
|
+
/**
|
|
63
|
+
* Returns the number of search hits for the passed folder object.
|
|
64
|
+
*/
|
|
65
|
+
getFolderHits(folder: Folder): number;
|
|
66
|
+
/**
|
|
67
|
+
* Returns the appropriate folder refinement definition based on the search
|
|
68
|
+
* result. The folder refinement definition returned will be the first that
|
|
69
|
+
* can be found traversing the folder tree upward starting at the deepest
|
|
70
|
+
* common folder of the search result.
|
|
71
|
+
*/
|
|
72
|
+
getFolderRefinementDefinition(): ContentSearchRefinementDefinition | null;
|
|
73
|
+
/**
|
|
74
|
+
* Returns a collection of matching folders.
|
|
75
|
+
*/
|
|
76
|
+
getMatchingFolders(): Collection<Folder>;
|
|
77
|
+
/**
|
|
78
|
+
* Returns folder refinement values based on the current search result
|
|
79
|
+
* filtered such that only folder refinements representing children of the
|
|
80
|
+
* given folder are present. If no folder is given, the method uses the
|
|
81
|
+
* library's root folder. The refinement value content counts represent all
|
|
82
|
+
* hits contained in the library tree starting at the corresponding child
|
|
83
|
+
* folder.
|
|
84
|
+
*/
|
|
85
|
+
getNextLevelFolderRefinementValues(folder: Folder): Collection<SearchRefinementValue>;
|
|
86
|
+
/**
|
|
87
|
+
* Returns the refinement value (incl. content hit count) for the given
|
|
88
|
+
* refinement definition and the given (selected) value.
|
|
89
|
+
*/
|
|
90
|
+
getRefinementValue(definition: ContentSearchRefinementDefinition, value: string): ContentSearchRefinementValue;
|
|
91
|
+
/**
|
|
92
|
+
* Returns the refinement value (incl. content hit count) for the given
|
|
93
|
+
* attribute refinement and the given (selected) value.
|
|
94
|
+
*/
|
|
95
|
+
getRefinementValue(name: string, value: string): ContentSearchRefinementValue;
|
|
96
|
+
getRefinementValues(attributeName: string, sortMode: number, sortDirection: number): Collection<SearchRefinementValue>;
|
|
97
|
+
/**
|
|
98
|
+
* Returns a collection of refinement values for the given refinement
|
|
99
|
+
* definition. The returned refinement values only include those that are
|
|
100
|
+
* part of the actual search result (i.e. hit count will always be > 0).
|
|
101
|
+
*/
|
|
102
|
+
getRefinementValues(definition: ContentSearchRefinementDefinition): Collection<SearchRefinementValue>;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export = ContentSearchRefinements;
|