@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
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import CSRFProtection = require('./CSRFProtection');
|
|
2
|
+
import ClickStream = require('./ClickStream');
|
|
3
|
+
import ClickStreamEntry = require('./ClickStreamEntry');
|
|
4
|
+
import Cookie = require('./Cookie');
|
|
5
|
+
import Cookies = require('./Cookies');
|
|
6
|
+
import Form = require('./Form');
|
|
7
|
+
import FormAction = require('./FormAction');
|
|
8
|
+
import FormElement = require('./FormElement');
|
|
9
|
+
import FormElementValidationResult = require('./FormElementValidationResult');
|
|
10
|
+
import FormField = require('./FormField');
|
|
11
|
+
import FormFieldOption = require('./FormFieldOption');
|
|
12
|
+
import FormFieldOptions = require('./FormFieldOptions');
|
|
13
|
+
import FormGroup = require('./FormGroup');
|
|
14
|
+
import FormList = require('./FormList');
|
|
15
|
+
import FormListItem = require('./FormListItem');
|
|
16
|
+
import Forms = require('./Forms');
|
|
17
|
+
import HttpParameter = require('./HttpParameter');
|
|
18
|
+
import HttpParameterMap = require('./HttpParameterMap');
|
|
19
|
+
import LoopIterator = require('./LoopIterator');
|
|
20
|
+
import PageMetaData = require('./PageMetaData');
|
|
21
|
+
import PageMetaTag = require('./PageMetaTag');
|
|
22
|
+
import PagingModel = require('./PagingModel');
|
|
23
|
+
import Resource = require('./Resource');
|
|
24
|
+
import URL = require('./URL');
|
|
25
|
+
import URLAction = require('./URLAction');
|
|
26
|
+
import URLParameter = require('./URLParameter');
|
|
27
|
+
import URLRedirect = require('./URLRedirect');
|
|
28
|
+
import URLRedirectMgr = require('./URLRedirectMgr');
|
|
29
|
+
import URLUtils = require('./URLUtils');
|
|
30
|
+
|
|
31
|
+
export {
|
|
32
|
+
CSRFProtection,
|
|
33
|
+
ClickStream,
|
|
34
|
+
ClickStreamEntry,
|
|
35
|
+
Cookie,
|
|
36
|
+
Cookies,
|
|
37
|
+
Form,
|
|
38
|
+
FormAction,
|
|
39
|
+
FormElement,
|
|
40
|
+
FormElementValidationResult,
|
|
41
|
+
FormField,
|
|
42
|
+
FormFieldOption,
|
|
43
|
+
FormFieldOptions,
|
|
44
|
+
FormGroup,
|
|
45
|
+
FormList,
|
|
46
|
+
FormListItem,
|
|
47
|
+
Forms,
|
|
48
|
+
HttpParameter,
|
|
49
|
+
HttpParameterMap,
|
|
50
|
+
LoopIterator,
|
|
51
|
+
PageMetaData,
|
|
52
|
+
PageMetaTag,
|
|
53
|
+
PagingModel,
|
|
54
|
+
Resource,
|
|
55
|
+
URL,
|
|
56
|
+
URLAction,
|
|
57
|
+
URLParameter,
|
|
58
|
+
URLRedirect,
|
|
59
|
+
URLRedirectMgr,
|
|
60
|
+
URLUtils
|
|
61
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This class represents a port to a Service Endpoint Interface. This
|
|
3
|
+
* class provides access to operations the service provides. Use the
|
|
4
|
+
* WSUtil class to perform operations on the port such as setting
|
|
5
|
+
* timeout values and configuring security.
|
|
6
|
+
*
|
|
7
|
+
* Developers should set a low timeout to ensure responsiveness
|
|
8
|
+
* of the site and avoid thread exhaustion (see dw.ws.WSUtil.setRequestTimeout).
|
|
9
|
+
* The default request timeout is 15 minutes when the web reference is used in a job,
|
|
10
|
+
* and 2 minutes otherwise. If the timeout of the calling script is lower,
|
|
11
|
+
* the script timeout is used.
|
|
12
|
+
* @see dw.ws.WSUtil
|
|
13
|
+
*/
|
|
14
|
+
declare abstract class Port {
|
|
15
|
+
/**
|
|
16
|
+
* Property constant for controlling the content type encoding of an outgoing message.
|
|
17
|
+
* @see dw.ws.WSUtil.setProperty
|
|
18
|
+
*/
|
|
19
|
+
static readonly ENCODING = "org.apache.cxf.message.Message.ENCODING";
|
|
20
|
+
/**
|
|
21
|
+
* The target service endpoint address. When using this property, the URI
|
|
22
|
+
* scheme for the endpoint address specification must correspond to the
|
|
23
|
+
* protocol/transport binding for the binding in use.
|
|
24
|
+
* @see dw.ws.WSUtil.setProperty
|
|
25
|
+
*/
|
|
26
|
+
static readonly ENDPOINT_ADDRESS_PROPERTY = "jakarta.xml.ws.service.endpoint.address";
|
|
27
|
+
/**
|
|
28
|
+
* Password for authentication. This property is used with the USERNAME_PROPERTY.
|
|
29
|
+
* You can also use the dw.ws.WSUtil.setUserNamePassword method instead of using these
|
|
30
|
+
* properties.
|
|
31
|
+
* @see dw.ws.WSUtil.setUserNamePassword
|
|
32
|
+
* @see dw.ws.WSUtil.setProperty
|
|
33
|
+
*/
|
|
34
|
+
static readonly PASSWORD_PROPERTY = "jakarta.xml.ws.security.auth.password";
|
|
35
|
+
/**
|
|
36
|
+
* This boolean property is used by a service client to indicate whether or not it wants to
|
|
37
|
+
* participate in a session with a service endpoint. If this property is set to true, the service client indicates
|
|
38
|
+
* that it wants the session to be maintained. If set to false, the session is not maintained. The default value
|
|
39
|
+
* for this property is false.
|
|
40
|
+
* @see dw.ws.WSUtil.setProperty
|
|
41
|
+
*/
|
|
42
|
+
static readonly SESSION_MAINTAIN_PROPERTY = "jakarta.xml.ws.session.maintain";
|
|
43
|
+
/**
|
|
44
|
+
* User name for authentication. This property is used with the PASSWORD_PROPERTY.
|
|
45
|
+
* You can also use the dw.ws.WSUtil.setUserNamePassword method instead of using these
|
|
46
|
+
* properties.
|
|
47
|
+
* @see dw.ws.WSUtil.setUserNamePassword
|
|
48
|
+
* @see dw.ws.WSUtil.setProperty
|
|
49
|
+
*/
|
|
50
|
+
static readonly USERNAME_PROPERTY = "jakarta.xml.ws.security.auth.username";
|
|
51
|
+
private constructor();
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export = Port;
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A utility class for performing SOAP-based operations for Web Services
|
|
3
|
+
* for use with dw.ws.WebReference2. This class provides
|
|
4
|
+
* methods for setting SOAP headers and a set of constants representing the
|
|
5
|
+
* well-known supported header names. You also use this class to set connection and request
|
|
6
|
+
* timeout values for Web Service calls.
|
|
7
|
+
* @see dw.ws.WebReference2
|
|
8
|
+
* @see dw.ws.Port
|
|
9
|
+
*/
|
|
10
|
+
declare class WSUtil {
|
|
11
|
+
/**
|
|
12
|
+
* This key identifier method is used when the X.509 Certificate is included in the message.
|
|
13
|
+
* The certificate is Base-64 encoded and included in the request via a BinarySecurityToken element
|
|
14
|
+
* @see WS_ENC_KEY_ID
|
|
15
|
+
* @see WS_SIG_KEY_ID
|
|
16
|
+
*/
|
|
17
|
+
static readonly KEY_ID_TYPE_DIRECT_REFERENCE = "DirectReference";
|
|
18
|
+
/**
|
|
19
|
+
* This Key Identifier method only applies for Encryption. Unlike the previous methods
|
|
20
|
+
* it refers to the way the EncryptedData references the EncryptedKey Element,
|
|
21
|
+
* rather than the way the EncryptedKey Element refers to the public key.
|
|
22
|
+
* @see WS_ENC_KEY_ID
|
|
23
|
+
*/
|
|
24
|
+
static readonly KEY_ID_TYPE_ENC_KEY_SHA1 = "EncryptedKeySHA1";
|
|
25
|
+
/**
|
|
26
|
+
* This key identifier method means that the Issuer Name and Serial Number of a X.509
|
|
27
|
+
* Certificate is included directly in the KeyInfo Element.
|
|
28
|
+
* @see WS_ENC_KEY_ID
|
|
29
|
+
* @see WS_SIG_KEY_ID
|
|
30
|
+
*/
|
|
31
|
+
static readonly KEY_ID_TYPE_ISSUE_SERIAL = "IssuerSerial";
|
|
32
|
+
/**
|
|
33
|
+
* This Key Identifier method refers to a Certificate via a Base-64 encoding of the
|
|
34
|
+
* Subject Key Identifier.
|
|
35
|
+
* @see WS_ENC_KEY_ID
|
|
36
|
+
* @see WS_SIG_KEY_ID
|
|
37
|
+
*/
|
|
38
|
+
static readonly KEY_ID_TYPE_SKI_IDENTIFIER = "SKIKeyIdentifier";
|
|
39
|
+
/**
|
|
40
|
+
* This Key Identifier method refers to the Certificate via a SHA-1 Thumbprint.
|
|
41
|
+
* The certificate may or may not be included in the request.
|
|
42
|
+
* @see WS_ENC_KEY_ID
|
|
43
|
+
* @see WS_SIG_KEY_ID
|
|
44
|
+
*/
|
|
45
|
+
static readonly KEY_ID_TYPE_THUMBPRINT = "Thumbprint";
|
|
46
|
+
/**
|
|
47
|
+
* This key identifier method is similar to KEY_ID_TYPE_DIRECT_REFERENCE, in that the certificate is
|
|
48
|
+
* included in the request. However, instead of referring to a certificate, the certificate is
|
|
49
|
+
* included directly in the KeyInfo element.
|
|
50
|
+
* @see WS_ENC_KEY_ID
|
|
51
|
+
* @see WS_SIG_KEY_ID
|
|
52
|
+
*/
|
|
53
|
+
static readonly KEY_ID_TYPE_X509_KEY_IDENTIFIER = "X509KeyIdentifier";
|
|
54
|
+
/**
|
|
55
|
+
* WS-Security action property name.
|
|
56
|
+
* Allowed property values are WS_NO_SECURITY, WS_TIMESTAMP, WS_ENCRYPT,
|
|
57
|
+
* WS_SIGNATURE, WS_USERNAME_TOKEN or a space separated list of these values.
|
|
58
|
+
*/
|
|
59
|
+
static readonly WS_ACTION = "action";
|
|
60
|
+
/**
|
|
61
|
+
* WS-Security action: Encrypt the message.
|
|
62
|
+
* The encryption specific parameters define how to encrypt.
|
|
63
|
+
*/
|
|
64
|
+
static readonly WS_ENCRYPT = "Encrypt";
|
|
65
|
+
/**
|
|
66
|
+
* WS-Security Encryption: Defines which parts of the request shall be encrypted.
|
|
67
|
+
*/
|
|
68
|
+
static readonly WS_ENCRYPTION_PARTS = "encryptionParts";
|
|
69
|
+
/**
|
|
70
|
+
* WS-Security Encryption: The user's name for encryption.
|
|
71
|
+
*/
|
|
72
|
+
static readonly WS_ENCRYPTION_USER = "encryptionUser";
|
|
73
|
+
/**
|
|
74
|
+
* Defines which key identifier type to use for encryption. Permissible
|
|
75
|
+
* values are:
|
|
76
|
+
*
|
|
77
|
+
* - `KEY_ID_TYPE_ISSUE_SERIAL` (default value)
|
|
78
|
+
* - `KEY_ID_TYPE_DIRECT_REFERENCE`
|
|
79
|
+
* - `KEY_ID_TYPE_X509_KEY_IDENTIFIER`
|
|
80
|
+
* - `KEY_ID_TYPE_THUMBPRINT`
|
|
81
|
+
* - `KEY_ID_TYPE_SKI_IDENTIFIER`
|
|
82
|
+
* - `KEY_ID_TYPE_ENC_KEY_SHA1`
|
|
83
|
+
* @see KEY_ID_TYPE_ISSUE_SERIAL
|
|
84
|
+
* @see KEY_ID_TYPE_DIRECT_REFERENCE
|
|
85
|
+
* @see KEY_ID_TYPE_X509_KEY_IDENTIFIER
|
|
86
|
+
* @see KEY_ID_TYPE_THUMBPRINT
|
|
87
|
+
* @see KEY_ID_TYPE_SKI_IDENTIFIER
|
|
88
|
+
* @see KEY_ID_TYPE_ENC_KEY_SHA1
|
|
89
|
+
*/
|
|
90
|
+
static readonly WS_ENC_KEY_ID = "encryptionKeyIdentifier";
|
|
91
|
+
/**
|
|
92
|
+
* WS-Security Encryption: The encryption and decryption keystore alias name
|
|
93
|
+
*/
|
|
94
|
+
static readonly WS_ENC_PROP_KEYSTORE_ALIAS = "__EncryptionPropKeystoreAlias";
|
|
95
|
+
/**
|
|
96
|
+
* WS-Security Encryption: The encryption and decryption keystore password
|
|
97
|
+
*/
|
|
98
|
+
static readonly WS_ENC_PROP_KEYSTORE_PW = "__EncryptionPropKeystorePassword";
|
|
99
|
+
/**
|
|
100
|
+
* WS-Security Encryption: The signature keystore type ( jks, pkcs12, or managed ).
|
|
101
|
+
*
|
|
102
|
+
* The default is jks.
|
|
103
|
+
*
|
|
104
|
+
* The "managed" type will resolve aliases against the names of certificates and keys in Business Manager.
|
|
105
|
+
*
|
|
106
|
+
* Note: For non-managed types, the keystore file has the basename of the WSDL file and the
|
|
107
|
+
* file extension based on the keystore type (e.g. MyService.jks).
|
|
108
|
+
* The keystore file has to be placed in the same cartridge directory
|
|
109
|
+
* as the WSDL file.
|
|
110
|
+
*/
|
|
111
|
+
static readonly WS_ENC_PROP_KEYSTORE_TYPE = "__EncryptionPropKeystoreType";
|
|
112
|
+
/**
|
|
113
|
+
* WS-Security action: No security.
|
|
114
|
+
*/
|
|
115
|
+
static readonly WS_NO_SECURITY = "NoSecurity";
|
|
116
|
+
/**
|
|
117
|
+
* WS-Security password type: Parameter for UsernameToken action to define the encoding
|
|
118
|
+
* of the password. Allowed values are PW_DIGEST or PW_TEXT.
|
|
119
|
+
*/
|
|
120
|
+
static readonly WS_PASSWORD_TYPE = "passwordType";
|
|
121
|
+
/**
|
|
122
|
+
* WS-Security password type "digest": Use a password digest to send the password information.
|
|
123
|
+
*/
|
|
124
|
+
static readonly WS_PW_DIGEST = "PasswordDigest";
|
|
125
|
+
/**
|
|
126
|
+
* WS-Security password type "text": Send the password information in clear.
|
|
127
|
+
*/
|
|
128
|
+
static readonly WS_PW_TEXT = "PasswordText";
|
|
129
|
+
/**
|
|
130
|
+
* A secrets map with the username and password entries needed to create the password
|
|
131
|
+
* callback object.
|
|
132
|
+
*/
|
|
133
|
+
static readonly WS_SECRETS_MAP = "__SecretsMap";
|
|
134
|
+
/**
|
|
135
|
+
* WS-Security action: Sign the message.
|
|
136
|
+
* The signature specific parameters define how to sign and which keys
|
|
137
|
+
* to use.
|
|
138
|
+
*/
|
|
139
|
+
static readonly WS_SIGNATURE = "Signature";
|
|
140
|
+
/**
|
|
141
|
+
* WS-Security Signature: Defines which parts of the request shall be signed.
|
|
142
|
+
*/
|
|
143
|
+
static readonly WS_SIGNATURE_PARTS = "signatureParts";
|
|
144
|
+
/**
|
|
145
|
+
* WS-Security Signature: The user's name for signature.
|
|
146
|
+
*/
|
|
147
|
+
static readonly WS_SIGNATURE_USER = "signatureUser";
|
|
148
|
+
/**
|
|
149
|
+
* WS-Security Signature: Defines which signature digest algorithm to use.
|
|
150
|
+
*/
|
|
151
|
+
static readonly WS_SIG_DIGEST_ALGO = "signatureDigestAlgorithm";
|
|
152
|
+
/**
|
|
153
|
+
* Defines which key identifier type to use for signature.
|
|
154
|
+
*
|
|
155
|
+
* Permissible values are:
|
|
156
|
+
*
|
|
157
|
+
* - `KEY_ID_TYPE_ISSUE_SERIAL`
|
|
158
|
+
* - `KEY_ID_TYPE_DIRECT_REFERENCE` (default value)
|
|
159
|
+
* - `KEY_ID_TYPE_X509_KEY_ID_IDENTIFIER`
|
|
160
|
+
* - `KEY_ID_TYPE_THUMBPRINT`
|
|
161
|
+
* - `KEY_ID_TYPE_SKI_IDENTIFIER`
|
|
162
|
+
* @see KEY_ID_TYPE_ISSUE_SERIAL
|
|
163
|
+
* @see KEY_ID_TYPE_DIRECT_REFERENCE
|
|
164
|
+
* @see KEY_ID_TYPE_X509_KEY_IDENTIFIER
|
|
165
|
+
* @see KEY_ID_TYPE_THUMBPRINT
|
|
166
|
+
* @see KEY_ID_TYPE_SKI_IDENTIFIER
|
|
167
|
+
*/
|
|
168
|
+
static readonly WS_SIG_KEY_ID = "signatureKeyIdentifier";
|
|
169
|
+
/**
|
|
170
|
+
* WS-Security Signature: The signature keystore alias name.
|
|
171
|
+
*/
|
|
172
|
+
static readonly WS_SIG_PROP_KEYSTORE_ALIAS = "__SignaturePropKeystoreAlias";
|
|
173
|
+
/**
|
|
174
|
+
* WS-Security Signature: The signature keystore password.
|
|
175
|
+
*/
|
|
176
|
+
static readonly WS_SIG_PROP_KEYSTORE_PW = "__SignaturePropKeystorePassword";
|
|
177
|
+
/**
|
|
178
|
+
* WS-Security: The signature keystore type ( jks, pkcs12, or managed ).
|
|
179
|
+
*
|
|
180
|
+
* The default is jks.
|
|
181
|
+
*
|
|
182
|
+
* The "managed" type will resolve aliases against the names of certificates and keys in Business Manager.
|
|
183
|
+
*
|
|
184
|
+
* Note: For non-managed types, the keystore file has the basename of the WSDL file and the
|
|
185
|
+
* file extension based on the keystore type (e.g. MyService.jks).
|
|
186
|
+
* The keystore file has to be placed in the same cartridge directory
|
|
187
|
+
* as the WSDL file.
|
|
188
|
+
*/
|
|
189
|
+
static readonly WS_SIG_PROP_KEYSTORE_TYPE = "__SignaturePropKeystoreType";
|
|
190
|
+
/**
|
|
191
|
+
* WS-Security action: Add a timestamp to the security header.
|
|
192
|
+
*/
|
|
193
|
+
static readonly WS_TIMESTAMP = "Timestamp";
|
|
194
|
+
/**
|
|
195
|
+
* WS-Security user name.
|
|
196
|
+
*/
|
|
197
|
+
static readonly WS_USER = "user";
|
|
198
|
+
/**
|
|
199
|
+
* WS-Security action: Add a UsernameToken identification.
|
|
200
|
+
*/
|
|
201
|
+
static readonly WS_USERNAME_TOKEN = "UsernameToken";
|
|
202
|
+
private constructor();
|
|
203
|
+
/**
|
|
204
|
+
* Adds a header element to the SOAP Header. Each header element should be XML and
|
|
205
|
+
* it should typically contain a namespace URI.
|
|
206
|
+
*/
|
|
207
|
+
static addSOAPHeader(port: any, xml: any, mustUnderstand: boolean, actor: string): void;
|
|
208
|
+
/**
|
|
209
|
+
* Adds a header element to the SOAP Header. Each header element should be XML and
|
|
210
|
+
* it should typically contain a namespace URI.
|
|
211
|
+
*/
|
|
212
|
+
static addSOAPHeader(port: any, xml: string, mustUnderstand: boolean, actor: string): void;
|
|
213
|
+
/**
|
|
214
|
+
* Removes all SOAP header elements from the port's request context.
|
|
215
|
+
* @see dw.ws.WebReference2
|
|
216
|
+
* @see dw.ws.Port
|
|
217
|
+
*/
|
|
218
|
+
static clearSOAPHeaders(port: any): void;
|
|
219
|
+
/**
|
|
220
|
+
* Creates an jakarta.xml.ws.Holder instance that wraps the specified element. When a WSDL operation is
|
|
221
|
+
* defined to have an input and output message using the same type, the operation may require the operation's
|
|
222
|
+
* object to be wrapped in a holder.
|
|
223
|
+
*/
|
|
224
|
+
static createHolder(element: any): any;
|
|
225
|
+
/**
|
|
226
|
+
* Returns the connection timeout value for the port.
|
|
227
|
+
* @see dw.ws.WebReference2
|
|
228
|
+
* @see dw.ws.Port
|
|
229
|
+
*/
|
|
230
|
+
static getConnectionTimeout(port: any): number;
|
|
231
|
+
/**
|
|
232
|
+
* Returns an HTTP request header property value using the specified key. Null is returned
|
|
233
|
+
* if the key does not represent an HTTP header property.
|
|
234
|
+
*/
|
|
235
|
+
static getHTTPRequestHeader(port: any, key: string): string | null;
|
|
236
|
+
/**
|
|
237
|
+
* Returns the value of the SOAP request property using the specified key on a port
|
|
238
|
+
* returned from one of the WebReference2 getService methods. The property
|
|
239
|
+
* keys are defined as constants in dw.ws.Port.
|
|
240
|
+
* @see dw.ws.WebReference2
|
|
241
|
+
* @see dw.ws.Port
|
|
242
|
+
*/
|
|
243
|
+
static getProperty(key: string, port: any): any;
|
|
244
|
+
/**
|
|
245
|
+
* Returns the read timeout value for a request made on the specified port.
|
|
246
|
+
* If the request exceeds the timeout value, an error is thrown.
|
|
247
|
+
* @see dw.ws.WebReference2
|
|
248
|
+
* @see dw.ws.Port
|
|
249
|
+
*/
|
|
250
|
+
static getRequestTimeout(port: any): number;
|
|
251
|
+
/**
|
|
252
|
+
* Returns the property value using the specified key and on a port returned from one of
|
|
253
|
+
* the WebReference2 getService methods.
|
|
254
|
+
* @see dw.ws.WebReference2
|
|
255
|
+
* @see dw.ws.Port
|
|
256
|
+
*/
|
|
257
|
+
static getResponseProperty(key: string, port: any): any;
|
|
258
|
+
/**
|
|
259
|
+
* Returns true if the HTTP request may be chunked, false otherwise
|
|
260
|
+
*/
|
|
261
|
+
static isAllowChunking(port: any): boolean;
|
|
262
|
+
/**
|
|
263
|
+
* Indicate that HTTP chunked Transfer-Encoding may be used.
|
|
264
|
+
*
|
|
265
|
+
* The default behavior is true. If false then the request will not
|
|
266
|
+
* be chunked and the Content-Length will always be sent.
|
|
267
|
+
*/
|
|
268
|
+
static setAllowChunking(port: any, allow: boolean): void;
|
|
269
|
+
/**
|
|
270
|
+
* Sets the connection timeout for the port.
|
|
271
|
+
* @see dw.ws.WebReference2
|
|
272
|
+
* @see dw.ws.Port
|
|
273
|
+
*/
|
|
274
|
+
static setConnectionTimeout(timeoutInMilliseconds: number, port: any): void;
|
|
275
|
+
/**
|
|
276
|
+
* Sets an HTTP request header property using the specified key and value.
|
|
277
|
+
*/
|
|
278
|
+
static setHTTPRequestHeader(port: any, key: string, value: string): void;
|
|
279
|
+
/**
|
|
280
|
+
* Set the SOAP request property using the specified key and value on a port
|
|
281
|
+
* returned from one of the WebReference2 getService() methods. The property
|
|
282
|
+
* keys are defined as constants in dw.ws.Port.
|
|
283
|
+
* @see dw.ws.WebReference2
|
|
284
|
+
* @see dw.ws.Port
|
|
285
|
+
*/
|
|
286
|
+
static setProperty(key: string, value: any, port: any): void;
|
|
287
|
+
/**
|
|
288
|
+
* Sets the read timeout value for a request made on the specified port.
|
|
289
|
+
* If the request exceeds the timeout value, an error is thrown.
|
|
290
|
+
* @see dw.ws.WebReference2
|
|
291
|
+
* @see dw.ws.Port
|
|
292
|
+
*/
|
|
293
|
+
static setRequestTimeout(timeoutInMilliseconds: number, port: any): void;
|
|
294
|
+
/**
|
|
295
|
+
* Set the user name and password to use with Basic authentication. For stronger
|
|
296
|
+
* authentication, use the setWSSecurityConfig method.
|
|
297
|
+
* @see setWSSecurityConfig
|
|
298
|
+
* @see dw.ws.WebReference2
|
|
299
|
+
* @see dw.ws.Port
|
|
300
|
+
*/
|
|
301
|
+
static setUserNamePassword(userName: string, password: string, port: any): void;
|
|
302
|
+
/**
|
|
303
|
+
* Set the WS-Security configuration for the request and response based on the
|
|
304
|
+
* constants defined (see above).
|
|
305
|
+
* @see dw.ws.WebReference2
|
|
306
|
+
* @see dw.ws.Port
|
|
307
|
+
*/
|
|
308
|
+
static setWSSecurityConfig(port: any, requestConfigMap: any, responseConfigMap: any): void;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export = WSUtil;
|
package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/ws/WebReference2.d.ts
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import Port = require('./Port');
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Represents a web service defined in a WSDL file. The implementation is backed by a JAX-WS framework.
|
|
5
|
+
*
|
|
6
|
+
* This implementation does not support `RPC/encoded` WSDLs. Such a WSDL must be migrated to a
|
|
7
|
+
* supported encoding such as `Document/literal` to work with this API.
|
|
8
|
+
*
|
|
9
|
+
* To create an instance of a WebReference2, you put a web service WSDL file in the `webreferences2`
|
|
10
|
+
* directory and reference the WSDL file in a B2C Commerce Script. You then request the service Port
|
|
11
|
+
* using one of the get service methods. For example, if your WSDL file is `MyWSDL.wsdl`,
|
|
12
|
+
* here is how you create an instance of WebReference2 and access the Port:
|
|
13
|
+
*
|
|
14
|
+
* ```
|
|
15
|
+
* var webref : WebReference2 = webreferences2.MyWSDL;
|
|
16
|
+
* var port : Port = webref.getDefaultService();
|
|
17
|
+
* ```
|
|
18
|
+
*
|
|
19
|
+
* Note that all script classes representing your WSDL file are placed in the `webreferences2`
|
|
20
|
+
* package. To use classes in the `webreferences2` package, you do not need to use the `importPackage`
|
|
21
|
+
* statement in your B2C Commerce Script file.
|
|
22
|
+
*
|
|
23
|
+
* The generated API may be customized via a property file named `<WSDLFile>.properties`.
|
|
24
|
+
* For example, if your WSDL file is `MyWSDL.wsdl`, the property file name is `MyWSDL.wsdl.properties`.
|
|
25
|
+
* Supported properties include:
|
|
26
|
+
*
|
|
27
|
+
* Supported properties with description
|
|
28
|
+
*
|
|
29
|
+
* Name
|
|
30
|
+
* Type
|
|
31
|
+
* Description
|
|
32
|
+
*
|
|
33
|
+
* `namespace`
|
|
34
|
+
* `boolean`
|
|
35
|
+
* If the WSDL contains different types with the same name a compilation error may occur. Set this to `true` to
|
|
36
|
+
* generate a namespace-aware Port, which will have classes separated into packages based on their associated namespace.
|
|
37
|
+
* The default value is `false`
|
|
38
|
+
*
|
|
39
|
+
* `underscoreBinding`
|
|
40
|
+
* `string`
|
|
41
|
+
* If you have elements in a WSDL schema that contain the underscore character, code generation may fail. Set this property
|
|
42
|
+
* to `asCharInWord` to resolve the problem. The default value is `asWordSeparator`.
|
|
43
|
+
*
|
|
44
|
+
* `collectionType`
|
|
45
|
+
* `string`
|
|
46
|
+
* The generated API will use array types instead of List types for collections when this value is set to
|
|
47
|
+
* `indexed`. This results in code that is more compatible with older `webreferences`-based
|
|
48
|
+
* implementations. The default behavior is to generate Lists.
|
|
49
|
+
*
|
|
50
|
+
* `enableWrapperStyle`
|
|
51
|
+
* `boolean`
|
|
52
|
+
* The generated API will use "bare" methods when this is `false`. When this is `true`,
|
|
53
|
+
* "wrapped" methods may be generated instead. The default value is `true`, but a `false`
|
|
54
|
+
* value is more compatible with older `webreferences`-based implementations.
|
|
55
|
+
*
|
|
56
|
+
* The messages sent to and from the remote server are logged at DEBUG level on sandboxes, and not logged at all on production.
|
|
57
|
+
* The custom log category used is derived from the WSDL name and message type. For example, the custom log categories for the file
|
|
58
|
+
* `MyWSDL.wsdl` are `webreferences2.MyWSDL.request` and `webreferences2.MyWSDL.response`. This
|
|
59
|
+
* logging is controlled by the following in the WSDL properties:
|
|
60
|
+
*
|
|
61
|
+
* Supported logging properties with description
|
|
62
|
+
*
|
|
63
|
+
* Name
|
|
64
|
+
* Type
|
|
65
|
+
* Description
|
|
66
|
+
*
|
|
67
|
+
* `logging.enabled`
|
|
68
|
+
* `boolean`
|
|
69
|
+
* `true` to explicitly allow logging, `false` to disallow. Default is `true` on Sandboxes
|
|
70
|
+
* and `false` on all other instance types
|
|
71
|
+
*
|
|
72
|
+
* `logging.level`
|
|
73
|
+
* `string`
|
|
74
|
+
* The logging level to use (`TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`).
|
|
75
|
+
* Default is `DEBUG`.
|
|
76
|
+
*
|
|
77
|
+
* `logging.pretty`
|
|
78
|
+
* `boolean`
|
|
79
|
+
* `true` to pretty-print the SOAP XML. Default is `false` to log the actual message body.
|
|
80
|
+
*
|
|
81
|
+
* `logging.verbose`
|
|
82
|
+
* `boolean`
|
|
83
|
+
* `true` to log HTTP headers and other message information. Default is `false` to only log the
|
|
84
|
+
* message body
|
|
85
|
+
*
|
|
86
|
+
* `logging.filter.elements`
|
|
87
|
+
* comma-separated `string`
|
|
88
|
+
* List of element tag names containing sensitive information. These will be filtered out of the message. All properties with
|
|
89
|
+
* this prefix will be used. For example `logging.filter.elements=Password,Token` is equivalent to two different properties
|
|
90
|
+
* `logging.filter.elements.01=Token` and `logging.filter.elements.02=Token`
|
|
91
|
+
*
|
|
92
|
+
* `logging.filter.headers`
|
|
93
|
+
* comma-separated `string`
|
|
94
|
+
* List of message header names containing sensitive information. These will be filtered out of the message. All properties with
|
|
95
|
+
* this prefix will be used. For example `logging.filter.headers=Authorization,Token` is equivalent to two different properties
|
|
96
|
+
* `logging.filter.headers.01=Authorization` and `logging.filter.headers.02=Token`
|
|
97
|
+
* @see dw.ws.Port
|
|
98
|
+
* @see dw.rpc.WebReference
|
|
99
|
+
*/
|
|
100
|
+
declare abstract class WebReference2 {
|
|
101
|
+
/**
|
|
102
|
+
* Returns the default service endpoint interface port of the web reference. The default service is
|
|
103
|
+
* determined as the first service based on the alphabetic order of the service name, and within
|
|
104
|
+
* the service the first SOAP port based on the alphabetic order of the port name.
|
|
105
|
+
*/
|
|
106
|
+
readonly defaultService: Port;
|
|
107
|
+
private constructor();
|
|
108
|
+
/**
|
|
109
|
+
* Returns the default service endpoint interface port of the web reference. The default service is
|
|
110
|
+
* determined as the first service based on the alphabetic order of the service name, and within
|
|
111
|
+
* the service the first SOAP port based on the alphabetic order of the port name.
|
|
112
|
+
*/
|
|
113
|
+
getDefaultService(): Port;
|
|
114
|
+
/**
|
|
115
|
+
* Returns a specific service from this web reference.
|
|
116
|
+
*/
|
|
117
|
+
getService(service: string, portName: string): Port;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export = WebReference2;
|