@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/util/Calendar.d.ts
ADDED
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents a Calendar and is based on the java.util.Calendar
|
|
3
|
+
* class. Refer to the java.util.Calendar documentation for
|
|
4
|
+
* more information.
|
|
5
|
+
*
|
|
6
|
+
* IMPORTANT NOTE: Please use the dw.util.StringUtils.formatCalendar
|
|
7
|
+
* functions to convert a Calendar object into a String.
|
|
8
|
+
*/
|
|
9
|
+
declare class Calendar {
|
|
10
|
+
/**
|
|
11
|
+
* Indicates whether the HOUR is before or after noon.
|
|
12
|
+
*/
|
|
13
|
+
static readonly AM_PM = 9;
|
|
14
|
+
/**
|
|
15
|
+
* Value for the month of year field representing April.
|
|
16
|
+
*/
|
|
17
|
+
static readonly APRIL = 3;
|
|
18
|
+
/**
|
|
19
|
+
* Value for the month of year field representing August.
|
|
20
|
+
*/
|
|
21
|
+
static readonly AUGUST = 7;
|
|
22
|
+
/**
|
|
23
|
+
* Represents a date.
|
|
24
|
+
*/
|
|
25
|
+
static readonly DATE = 5;
|
|
26
|
+
/**
|
|
27
|
+
* Represents a day of the month.
|
|
28
|
+
*/
|
|
29
|
+
static readonly DAY_OF_MONTH = 5;
|
|
30
|
+
/**
|
|
31
|
+
* Represents a day of the week.
|
|
32
|
+
*/
|
|
33
|
+
static readonly DAY_OF_WEEK = 7;
|
|
34
|
+
/**
|
|
35
|
+
* Represents a day of the week in a month.
|
|
36
|
+
*/
|
|
37
|
+
static readonly DAY_OF_WEEK_IN_MONTH = 8;
|
|
38
|
+
/**
|
|
39
|
+
* Represents a day of the year.
|
|
40
|
+
*/
|
|
41
|
+
static readonly DAY_OF_YEAR = 6;
|
|
42
|
+
/**
|
|
43
|
+
* Value for the month of year field representing December.
|
|
44
|
+
*/
|
|
45
|
+
static readonly DECEMBER = 11;
|
|
46
|
+
/**
|
|
47
|
+
* Indicates the daylight savings offset in milliseconds.
|
|
48
|
+
*/
|
|
49
|
+
static readonly DST_OFFSET = 16;
|
|
50
|
+
/**
|
|
51
|
+
* Indicates the era such as 'AD' or 'BC' in the Julian calendar.
|
|
52
|
+
*/
|
|
53
|
+
static readonly ERA = 0;
|
|
54
|
+
/**
|
|
55
|
+
* Value for the month of year field representing February.
|
|
56
|
+
*/
|
|
57
|
+
static readonly FEBRUARY = 1;
|
|
58
|
+
/**
|
|
59
|
+
* Value for the day of the week field representing Friday.
|
|
60
|
+
*/
|
|
61
|
+
static readonly FRIDAY = 6;
|
|
62
|
+
/**
|
|
63
|
+
* Represents an hour.
|
|
64
|
+
*/
|
|
65
|
+
static readonly HOUR = 10;
|
|
66
|
+
/**
|
|
67
|
+
* Represents an hour of the day.
|
|
68
|
+
*/
|
|
69
|
+
static readonly HOUR_OF_DAY = 11;
|
|
70
|
+
/**
|
|
71
|
+
* The input date pattern, for instance MM/dd/yyyy
|
|
72
|
+
*/
|
|
73
|
+
static readonly INPUT_DATE_PATTERN = 3;
|
|
74
|
+
/**
|
|
75
|
+
* The input date time pattern, for instance MM/dd/yyyy h:mm a
|
|
76
|
+
*/
|
|
77
|
+
static readonly INPUT_DATE_TIME_PATTERN = 5;
|
|
78
|
+
/**
|
|
79
|
+
* The input time pattern, for instance h:mm a
|
|
80
|
+
*/
|
|
81
|
+
static readonly INPUT_TIME_PATTERN = 4;
|
|
82
|
+
/**
|
|
83
|
+
* Value for the month of year field representing January.
|
|
84
|
+
*/
|
|
85
|
+
static readonly JANUARY = 0;
|
|
86
|
+
/**
|
|
87
|
+
* Value for the month of year field representing July.
|
|
88
|
+
*/
|
|
89
|
+
static readonly JULY = 6;
|
|
90
|
+
/**
|
|
91
|
+
* Value for the month of year field representing June.
|
|
92
|
+
*/
|
|
93
|
+
static readonly JUNE = 5;
|
|
94
|
+
/**
|
|
95
|
+
* The long date pattern, for instance MMM/d/yyyy
|
|
96
|
+
*/
|
|
97
|
+
static readonly LONG_DATE_PATTERN = 1;
|
|
98
|
+
/**
|
|
99
|
+
* Value for the month of year field representing March.
|
|
100
|
+
*/
|
|
101
|
+
static readonly MARCH = 2;
|
|
102
|
+
/**
|
|
103
|
+
* Value for the month of year field representing May.
|
|
104
|
+
*/
|
|
105
|
+
static readonly MAY = 4;
|
|
106
|
+
/**
|
|
107
|
+
* Represents a millisecond.
|
|
108
|
+
*/
|
|
109
|
+
static readonly MILLISECOND = 14;
|
|
110
|
+
/**
|
|
111
|
+
* Represents a minute.
|
|
112
|
+
*/
|
|
113
|
+
static readonly MINUTE = 12;
|
|
114
|
+
/**
|
|
115
|
+
* Value for the day of the week field representing Monday.
|
|
116
|
+
*/
|
|
117
|
+
static readonly MONDAY = 2;
|
|
118
|
+
/**
|
|
119
|
+
* Represents a month where the first month of the year is 0.
|
|
120
|
+
*/
|
|
121
|
+
static readonly MONTH = 2;
|
|
122
|
+
/**
|
|
123
|
+
* Value for the month of year field representing November.
|
|
124
|
+
*/
|
|
125
|
+
static readonly NOVEMBER = 10;
|
|
126
|
+
/**
|
|
127
|
+
* Value for the month of year field representing October.
|
|
128
|
+
*/
|
|
129
|
+
static readonly OCTOBER = 9;
|
|
130
|
+
/**
|
|
131
|
+
* Value for the day of the week field representing Saturday.
|
|
132
|
+
*/
|
|
133
|
+
static readonly SATURDAY = 7;
|
|
134
|
+
/**
|
|
135
|
+
* Represents a second.
|
|
136
|
+
*/
|
|
137
|
+
static readonly SECOND = 13;
|
|
138
|
+
/**
|
|
139
|
+
* Value for the month of year field representing September.
|
|
140
|
+
*/
|
|
141
|
+
static readonly SEPTEMBER = 8;
|
|
142
|
+
/**
|
|
143
|
+
* The short date pattern, for instance M/d/yy
|
|
144
|
+
*/
|
|
145
|
+
static readonly SHORT_DATE_PATTERN = 0;
|
|
146
|
+
/**
|
|
147
|
+
* Value for the day of the week field representing Sunday.
|
|
148
|
+
*/
|
|
149
|
+
static readonly SUNDAY = 1;
|
|
150
|
+
/**
|
|
151
|
+
* Value for the day of the week field representing Thursday.
|
|
152
|
+
*/
|
|
153
|
+
static readonly THURSDAY = 5;
|
|
154
|
+
/**
|
|
155
|
+
* The time pattern, for instance h:mm:ss a
|
|
156
|
+
*/
|
|
157
|
+
static readonly TIME_PATTERN = 2;
|
|
158
|
+
/**
|
|
159
|
+
* Value for the day of the week field representing Tuesday.
|
|
160
|
+
*/
|
|
161
|
+
static readonly TUESDAY = 3;
|
|
162
|
+
/**
|
|
163
|
+
* Value for the day of the week field representing Wednesday.
|
|
164
|
+
*/
|
|
165
|
+
static readonly WEDNESDAY = 4;
|
|
166
|
+
/**
|
|
167
|
+
* Represents a week of the month.
|
|
168
|
+
*/
|
|
169
|
+
static readonly WEEK_OF_MONTH = 4;
|
|
170
|
+
/**
|
|
171
|
+
* Represents a week in the year.
|
|
172
|
+
*/
|
|
173
|
+
static readonly WEEK_OF_YEAR = 3;
|
|
174
|
+
/**
|
|
175
|
+
* Represents a year.
|
|
176
|
+
*/
|
|
177
|
+
static readonly YEAR = 1;
|
|
178
|
+
/**
|
|
179
|
+
* Indicates the raw offset from GMT in milliseconds.
|
|
180
|
+
*/
|
|
181
|
+
static readonly ZONE_OFFSET = 15;
|
|
182
|
+
/**
|
|
183
|
+
* Returns the first day of the week base on locale context. For example, in the US
|
|
184
|
+
* the first day of the week is SUNDAY. However, in France the
|
|
185
|
+
* first day of the week is MONDAY.
|
|
186
|
+
*/
|
|
187
|
+
firstDayOfWeek: number;
|
|
188
|
+
/**
|
|
189
|
+
* Returns the current time stamp of this calendar. This method
|
|
190
|
+
* is also used to convert a Calendar into a Date.
|
|
191
|
+
*
|
|
192
|
+
* WARNING: Keep in mind that the returned Date object's time is always
|
|
193
|
+
* interpreted in the time zone GMT. This means time zone information
|
|
194
|
+
* set at the calendar object will not be honored and gets lost.
|
|
195
|
+
*/
|
|
196
|
+
time: Date;
|
|
197
|
+
/**
|
|
198
|
+
* Returns the current time zone of this calendar.
|
|
199
|
+
*/
|
|
200
|
+
timeZone: string;
|
|
201
|
+
/**
|
|
202
|
+
* Creates a new Calendar object that is set to the current
|
|
203
|
+
* time. The default time zone of the Calendar object is GMT.
|
|
204
|
+
*
|
|
205
|
+
* WARNING: Keep in mind that the time stamp represented by the new calendar
|
|
206
|
+
* is always interpreted in the time zone GMT. This means time zone
|
|
207
|
+
* information at the calendar object needs to be set separately by
|
|
208
|
+
* using the setTimeZone method.
|
|
209
|
+
*/
|
|
210
|
+
constructor();
|
|
211
|
+
/**
|
|
212
|
+
* Creates a new Calendar object for the given Date object. The time is set to
|
|
213
|
+
* the given Date object's time. The default time zone of the Calendar object is GMT.
|
|
214
|
+
*
|
|
215
|
+
* WARNING: Keep in mind that the given Date object is always
|
|
216
|
+
* interpreted in the time zone GMT. This means time zone
|
|
217
|
+
* information at the calendar object needs to be set separately by
|
|
218
|
+
* using the setTimeZone method.
|
|
219
|
+
*/
|
|
220
|
+
constructor(date: Date);
|
|
221
|
+
/**
|
|
222
|
+
* Adds or subtracts the specified amount of time to the given
|
|
223
|
+
* calendar field, based on the calendar's rules.
|
|
224
|
+
*/
|
|
225
|
+
add(field: number, value: number): void;
|
|
226
|
+
/**
|
|
227
|
+
* Indicates if this Calendar represents a time after
|
|
228
|
+
* the time represented by the specified Object.
|
|
229
|
+
*/
|
|
230
|
+
after(obj: any): boolean;
|
|
231
|
+
/**
|
|
232
|
+
* Indicates if this Calendar represents a time before
|
|
233
|
+
* the time represented by the specified Object.
|
|
234
|
+
*/
|
|
235
|
+
before(obj: any): boolean;
|
|
236
|
+
/**
|
|
237
|
+
* Sets all the calendar field values and the time value
|
|
238
|
+
* (millisecond offset from the Epoch) of this Calendar undefined.
|
|
239
|
+
*/
|
|
240
|
+
clear(): void;
|
|
241
|
+
/**
|
|
242
|
+
* Sets the given calendar field value and the time value
|
|
243
|
+
* (millisecond offset from the Epoch) of this Calendar undefined.
|
|
244
|
+
*/
|
|
245
|
+
clear(field: number): void;
|
|
246
|
+
/**
|
|
247
|
+
* Compares the time values (millisecond offsets from the Epoch)
|
|
248
|
+
* represented by two Calendar objects.
|
|
249
|
+
*/
|
|
250
|
+
compareTo(anotherCalendar: Calendar): number;
|
|
251
|
+
/**
|
|
252
|
+
* Compares two calendar values whether they are equivalent.
|
|
253
|
+
*/
|
|
254
|
+
equals(other: any): boolean;
|
|
255
|
+
/**
|
|
256
|
+
* Returns the value of the given calendar field.
|
|
257
|
+
*/
|
|
258
|
+
get(field: number): number;
|
|
259
|
+
/**
|
|
260
|
+
* Returns the maximum value that the specified calendar
|
|
261
|
+
* field could have.
|
|
262
|
+
*/
|
|
263
|
+
getActualMaximum(field: number): number;
|
|
264
|
+
/**
|
|
265
|
+
* Returns the minimum value that the specified calendar
|
|
266
|
+
* field could have.
|
|
267
|
+
*/
|
|
268
|
+
getActualMinimum(field: number): number;
|
|
269
|
+
/**
|
|
270
|
+
* Returns the first day of the week base on locale context. For example, in the US
|
|
271
|
+
* the first day of the week is SUNDAY. However, in France the
|
|
272
|
+
* first day of the week is MONDAY.
|
|
273
|
+
*/
|
|
274
|
+
getFirstDayOfWeek(): number;
|
|
275
|
+
/**
|
|
276
|
+
* Returns the maximum value for the given calendar
|
|
277
|
+
* field.
|
|
278
|
+
*/
|
|
279
|
+
getMaximum(field: number): number;
|
|
280
|
+
/**
|
|
281
|
+
* Returns the minimum value for the given calendar
|
|
282
|
+
* field.
|
|
283
|
+
*/
|
|
284
|
+
getMinimum(field: number): number;
|
|
285
|
+
/**
|
|
286
|
+
* Returns the current time stamp of this calendar. This method
|
|
287
|
+
* is also used to convert a Calendar into a Date.
|
|
288
|
+
*
|
|
289
|
+
* WARNING: Keep in mind that the returned Date object's time is always
|
|
290
|
+
* interpreted in the time zone GMT. This means time zone information
|
|
291
|
+
* set at the calendar object will not be honored and gets lost.
|
|
292
|
+
*/
|
|
293
|
+
getTime(): Date;
|
|
294
|
+
/**
|
|
295
|
+
* Returns the current time zone of this calendar.
|
|
296
|
+
*/
|
|
297
|
+
getTimeZone(): string;
|
|
298
|
+
/**
|
|
299
|
+
* Calculates the hash code for a calendar;
|
|
300
|
+
*/
|
|
301
|
+
hashCode(): number;
|
|
302
|
+
/**
|
|
303
|
+
* Indicates if the specified year is a leap year.
|
|
304
|
+
*/
|
|
305
|
+
isLeapYear(year: number): boolean;
|
|
306
|
+
/**
|
|
307
|
+
* Checks, whether two calendar dates fall on the same day.
|
|
308
|
+
*
|
|
309
|
+
* The method performs comparison based on both calendar's
|
|
310
|
+
* field values by honoring the defined time zones.
|
|
311
|
+
*
|
|
312
|
+
* Examples:
|
|
313
|
+
*
|
|
314
|
+
* ```
|
|
315
|
+
* new Calendar( new Date( "2002/02/28 13:45" ).isSameDay( new Calendar( new Date( "2002/02/28 06:01" ) ) );
|
|
316
|
+
* ```
|
|
317
|
+
*
|
|
318
|
+
* would return true.
|
|
319
|
+
*
|
|
320
|
+
* ```
|
|
321
|
+
* new Calendar( new Date( "2002/02/28 13:45" ).isSameDay( new Calendar( new Date( "2002/02/12 13:45" ) ) );
|
|
322
|
+
* ```
|
|
323
|
+
*
|
|
324
|
+
* would return false.
|
|
325
|
+
*
|
|
326
|
+
* ```
|
|
327
|
+
* new Calendar( new Date( "2002/02/28 13:45" ).isSameDay( new Calendar( new Date( "1970/02/28 13:45" ) ) );
|
|
328
|
+
* ```
|
|
329
|
+
*
|
|
330
|
+
* would return false.
|
|
331
|
+
*
|
|
332
|
+
* ```
|
|
333
|
+
* var cal1 = new Calendar( new Date( "2002/02/28 02:00" );
|
|
334
|
+
* cal1.setTimeZone( "Etc/GMT+1" );
|
|
335
|
+
* var cal2 = new Calendar( new Date( "2002/02/28 00:00" );
|
|
336
|
+
* cal2.setTimeZone( "Etc/GMT+1" );
|
|
337
|
+
* cal1.isSameDay( cal2 );
|
|
338
|
+
* ```
|
|
339
|
+
*
|
|
340
|
+
* would return false since the time zone is applied first which results in comparing `2002/02/28 01:00` for `cal1`
|
|
341
|
+
* with `2002/02/27 23:00` for `cal2`.
|
|
342
|
+
*/
|
|
343
|
+
isSameDay(other: Calendar): boolean;
|
|
344
|
+
/**
|
|
345
|
+
* Checks, whether two calendar dates fall on the same day.
|
|
346
|
+
*
|
|
347
|
+
* The method performs comparison based on both calendar's
|
|
348
|
+
* time stamps by ignoring any defined time zones.
|
|
349
|
+
*
|
|
350
|
+
* Examples:
|
|
351
|
+
*
|
|
352
|
+
* ```
|
|
353
|
+
* new Calendar( new Date( "2002/02/28 13:45" ).isSameDayByTimestamp( new Calendar( new Date( "2002/02/28 06:01" ) ) );
|
|
354
|
+
* ```
|
|
355
|
+
*
|
|
356
|
+
* would return true.
|
|
357
|
+
*
|
|
358
|
+
* ```
|
|
359
|
+
* new Calendar( new Date( "2002/02/28 13:45" ).isSameDayByTimestamp( new Calendar( new Date( "2002/02/12 13:45" ) ) );
|
|
360
|
+
* ```
|
|
361
|
+
*
|
|
362
|
+
* would return false.
|
|
363
|
+
*
|
|
364
|
+
* ```
|
|
365
|
+
* new Calendar( new Date( "2002/02/28 13:45" ).isSameDayByTimestamp( new Calendar( new Date( "1970/02/28 13:45" ) ) );
|
|
366
|
+
* ```
|
|
367
|
+
*
|
|
368
|
+
* would return false.
|
|
369
|
+
*
|
|
370
|
+
* ```
|
|
371
|
+
* var cal1 = new Calendar( new Date( "2002/02/28 02:00" );
|
|
372
|
+
* cal1.setTimeZone( "Etc/GMT+1" );
|
|
373
|
+
* var cal2 = new Calendar( new Date( "2002/02/28 00:00" );
|
|
374
|
+
* cal2.setTimeZone( "Etc/GMT+1" );
|
|
375
|
+
* cal1.isSameDayByTimestamp( cal2 );
|
|
376
|
+
* ```
|
|
377
|
+
*
|
|
378
|
+
* would return true since the time zone is not applied first which results in comparing `2002/02/28 02:00` for `cal1`
|
|
379
|
+
* with `2002/02/28 00:00` for `cal2`.
|
|
380
|
+
*/
|
|
381
|
+
isSameDayByTimestamp(other: Calendar): boolean;
|
|
382
|
+
/**
|
|
383
|
+
* Indicates if the field is set.
|
|
384
|
+
*/
|
|
385
|
+
isSet(field: number): boolean;
|
|
386
|
+
/**
|
|
387
|
+
* Parses the string according to the date and time format pattern and set
|
|
388
|
+
* the time at this calendar object. For the specification of the date and
|
|
389
|
+
* time format pattern see the javadoc of the JDK class java.text.SimpleDateFormat.
|
|
390
|
+
* If a time zone is included in the format string,
|
|
391
|
+
* this time zone is used to interpet the time. Otherwise the currently set
|
|
392
|
+
* calendar time zone is used to parse the given time string.
|
|
393
|
+
*/
|
|
394
|
+
parseByFormat(timeString: string, format: string): void;
|
|
395
|
+
/**
|
|
396
|
+
* Parses the string according the date format pattern of the given locale.
|
|
397
|
+
* If the locale name is invalid, an exception is thrown. The currently set
|
|
398
|
+
* calendar time zone is used to parse the given time string.
|
|
399
|
+
*/
|
|
400
|
+
parseByLocale(timeString: string, locale: string, pattern: number): void;
|
|
401
|
+
/**
|
|
402
|
+
* Rolls the specified field up or down one value.
|
|
403
|
+
*/
|
|
404
|
+
roll(field: number, up: boolean): void;
|
|
405
|
+
/**
|
|
406
|
+
* Rolls the specified field using the specified value.
|
|
407
|
+
*/
|
|
408
|
+
roll(field: number, amount: number): void;
|
|
409
|
+
/**
|
|
410
|
+
* Sets the given calendar field to the given value.
|
|
411
|
+
*/
|
|
412
|
+
set(field: number, value: number): void;
|
|
413
|
+
/**
|
|
414
|
+
* Sets the values for the calendar fields YEAR, MONTH, and DAY_OF_MONTH.
|
|
415
|
+
*/
|
|
416
|
+
set(year: number, month: number, date: number): void;
|
|
417
|
+
/**
|
|
418
|
+
* Sets the values for the calendar fields YEAR, MONTH,
|
|
419
|
+
* DAY_OF_MONTH, HOUR_OF_DAY, and MINUTE.
|
|
420
|
+
*/
|
|
421
|
+
set(year: number, month: number, date: number, hourOfDay: number, minute: number): void;
|
|
422
|
+
/**
|
|
423
|
+
* Sets the values for the calendar fields YEAR, MONTH,
|
|
424
|
+
* DAY_OF_MONTH, HOUR_OF_DAY, MINUTE and SECOND.
|
|
425
|
+
*/
|
|
426
|
+
set(year: number, month: number, date: number, hourOfDay: number, minute: number, second: number): void;
|
|
427
|
+
/**
|
|
428
|
+
* Sets what the first day of the week is.
|
|
429
|
+
*/
|
|
430
|
+
setFirstDayOfWeek(value: number): void;
|
|
431
|
+
/**
|
|
432
|
+
* Sets the current time stamp of this calendar.
|
|
433
|
+
*
|
|
434
|
+
* WARNING: Keep in mind that the set Date object's time is always
|
|
435
|
+
* interpreted in the time zone GMT. This means that time zone
|
|
436
|
+
* information at the calendar object needs to be set separately by
|
|
437
|
+
* using the setTimeZone method.
|
|
438
|
+
*/
|
|
439
|
+
setTime(date: Date): void;
|
|
440
|
+
/**
|
|
441
|
+
* Sets the current time zone of this calendar.
|
|
442
|
+
*
|
|
443
|
+
* WARNING: Keep in mind that the time stamp represented by the calendar is
|
|
444
|
+
* always interpreted in the time zone GMT. Changing the time zone will not
|
|
445
|
+
* change the calendar's time stamp.
|
|
446
|
+
*/
|
|
447
|
+
setTimeZone(timeZone: string): void;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export = Calendar;
|
package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Collection.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import utilIterator = require('./Iterator');
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Represents a collection of objects.
|
|
5
|
+
*/
|
|
6
|
+
declare class Collection<T> {
|
|
7
|
+
/**
|
|
8
|
+
* Returns true if the collection is empty.
|
|
9
|
+
*/
|
|
10
|
+
readonly empty: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Returns the length of the collection. This is similar to
|
|
13
|
+
* to a ECMA array of 'products.length'.
|
|
14
|
+
*/
|
|
15
|
+
readonly length: number;
|
|
16
|
+
/**
|
|
17
|
+
* Adds the specified objects to the collection. The method can also
|
|
18
|
+
* be called with an ECMA array as argument.
|
|
19
|
+
*
|
|
20
|
+
* If called with a single ECMA array as argument the individual elements of
|
|
21
|
+
* that array are added to the collection. If the array object itself should
|
|
22
|
+
* be added use the method add1().
|
|
23
|
+
*/
|
|
24
|
+
add(...values: T[]): boolean;
|
|
25
|
+
/**
|
|
26
|
+
* The method adds a single object to the collection.
|
|
27
|
+
*/
|
|
28
|
+
add1(object: T): boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Adds the collection of objects to the collection.
|
|
31
|
+
*/
|
|
32
|
+
addAll(objs: Collection<T>): boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Clears the collection.
|
|
35
|
+
*/
|
|
36
|
+
clear(): void;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the collection contains the specified object.
|
|
39
|
+
*/
|
|
40
|
+
contains(obj: T): boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Returns true if the collection contains all of the objects
|
|
43
|
+
* in the specified collection.
|
|
44
|
+
*/
|
|
45
|
+
containsAll(objs: Collection<T>): boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Returns the length of the collection. This is similar to
|
|
48
|
+
* to a ECMA array of 'products.length'.
|
|
49
|
+
*/
|
|
50
|
+
getLength(): number;
|
|
51
|
+
/**
|
|
52
|
+
* Returns true if the collection is empty.
|
|
53
|
+
*/
|
|
54
|
+
isEmpty(): boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Returns an iterator that can be used to access
|
|
57
|
+
* the members of the collection.
|
|
58
|
+
*/
|
|
59
|
+
iterator(): utilIterator<T>;
|
|
60
|
+
/**
|
|
61
|
+
* Removes the specified object from the collection.
|
|
62
|
+
*/
|
|
63
|
+
remove(obj: T): boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Removes all of object in the specified object from the collection.
|
|
66
|
+
*/
|
|
67
|
+
removeAll(objs: Collection<T>): boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Removes all of object in the collection that are not in the
|
|
70
|
+
* specified collection.
|
|
71
|
+
*/
|
|
72
|
+
retainAll(objs: Collection<T>): boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Returns the size of the collection.
|
|
75
|
+
*/
|
|
76
|
+
size(): number;
|
|
77
|
+
/**
|
|
78
|
+
* Returns all elements of this collection in a newly created array. The returned array is independent of this collection and
|
|
79
|
+
* can be modified without changing the collection. The elements in the array are in the same order as they are returned when
|
|
80
|
+
* iterating over this collection.
|
|
81
|
+
*/
|
|
82
|
+
toArray(): T[];
|
|
83
|
+
/**
|
|
84
|
+
* Returns a subset of the elements of this collection in a newly created array. The returned array is independent of this collection and
|
|
85
|
+
* can be modified without changing the collection. The elements in the array are in the same order as they are returned when
|
|
86
|
+
* iterating over this collection.
|
|
87
|
+
*/
|
|
88
|
+
toArray(start: number, size: number): T[];
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export = Collection;
|
package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/Currency.d.ts
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents a currency supported by the system.
|
|
3
|
+
*/
|
|
4
|
+
declare class Currency {
|
|
5
|
+
/**
|
|
6
|
+
* Gets the ISO 4217 mnemonic currency code of this currency.
|
|
7
|
+
*/
|
|
8
|
+
readonly currencyCode: string;
|
|
9
|
+
/**
|
|
10
|
+
* Gets the default number of fraction digits used with this currency.
|
|
11
|
+
* For example, the default number of fraction digits for the Euro is 2,
|
|
12
|
+
* while for the Japanese Yen it's 0.
|
|
13
|
+
*/
|
|
14
|
+
readonly defaultFractionDigits: number;
|
|
15
|
+
/**
|
|
16
|
+
* Gets a long name for this currency. e.g. "United States Dollar".
|
|
17
|
+
* The returned name is the one stored in the system for this currency.
|
|
18
|
+
* Currently only English names are available, but in the future
|
|
19
|
+
* this method may return a locale-specific name.
|
|
20
|
+
*/
|
|
21
|
+
readonly name: string;
|
|
22
|
+
/**
|
|
23
|
+
* Gets the symbol of this currency. e.g. "$" for the US Dollar.
|
|
24
|
+
*/
|
|
25
|
+
readonly symbol: string;
|
|
26
|
+
private constructor();
|
|
27
|
+
/**
|
|
28
|
+
* Returns a `Currency` instance for the given currency code,
|
|
29
|
+
* or `null` if there is no such currency.
|
|
30
|
+
*/
|
|
31
|
+
static getCurrency(currencyCode: string): Currency | null;
|
|
32
|
+
/**
|
|
33
|
+
* Gets the ISO 4217 mnemonic currency code of this currency.
|
|
34
|
+
*/
|
|
35
|
+
getCurrencyCode(): string;
|
|
36
|
+
/**
|
|
37
|
+
* Gets the default number of fraction digits used with this currency.
|
|
38
|
+
* For example, the default number of fraction digits for the Euro is 2,
|
|
39
|
+
* while for the Japanese Yen it's 0.
|
|
40
|
+
*/
|
|
41
|
+
getDefaultFractionDigits(): number;
|
|
42
|
+
/**
|
|
43
|
+
* Gets a long name for this currency. e.g. "United States Dollar".
|
|
44
|
+
* The returned name is the one stored in the system for this currency.
|
|
45
|
+
* Currently only English names are available, but in the future
|
|
46
|
+
* this method may return a locale-specific name.
|
|
47
|
+
*/
|
|
48
|
+
getName(): string;
|
|
49
|
+
/**
|
|
50
|
+
* Gets the symbol of this currency. e.g. "$" for the US Dollar.
|
|
51
|
+
*/
|
|
52
|
+
getSymbol(): string;
|
|
53
|
+
/**
|
|
54
|
+
* Returns the ISO 4217 mnemonic currency code of this currency.
|
|
55
|
+
*/
|
|
56
|
+
toString(): string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export = Currency;
|
package/dist/script-types/node_modules/@salesforce/b2c-script-types/types/dw/util/DateUtils.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A class with several utility methods for Date objects.
|
|
3
|
+
* @deprecated See each method for additional information.
|
|
4
|
+
*/
|
|
5
|
+
declare class DateUtils {
|
|
6
|
+
private constructor();
|
|
7
|
+
/**
|
|
8
|
+
* Returns the current time stamp in the time zone of the
|
|
9
|
+
* instance.
|
|
10
|
+
* @deprecated Use dw.system.System.getCalendar instead.
|
|
11
|
+
*/
|
|
12
|
+
static nowForInstance(): Date;
|
|
13
|
+
/**
|
|
14
|
+
* Returns the current timestamp in the time zone of the
|
|
15
|
+
* current site.
|
|
16
|
+
* @deprecated Use dw.system.Site.getCalendar instead.
|
|
17
|
+
*/
|
|
18
|
+
static nowForSite(): Date;
|
|
19
|
+
/**
|
|
20
|
+
* Returns the current time stamp in UTC.
|
|
21
|
+
* @deprecated Create a new dw.util.Calendar object and set
|
|
22
|
+
* the time zone "UTC" instead.
|
|
23
|
+
*/
|
|
24
|
+
static nowInUTC(): Date;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export = DateUtils;
|