├── .gitignore ├── .npmrc ├── .nvmrc ├── @types └── sfcc │ ├── APIException.d.ts │ ├── ConversionError.d.ts │ ├── ES6Iterator.d.ts │ ├── Fault.d.ts │ ├── Generator.d.ts │ ├── IOError.d.ts │ ├── InternalError.d.ts │ ├── Iterable.d.ts │ ├── Module.d.ts │ ├── Namespace.d.ts │ ├── QName.d.ts │ ├── StopIteration.d.ts │ ├── SystemError.d.ts │ ├── XML.d.ts │ ├── XMLList.d.ts │ ├── XMLStreamError.d.ts │ ├── attrs.d.ts │ ├── attrs.txt │ ├── dw │ ├── alert │ │ ├── Alert.d.ts │ │ └── Alerts.d.ts │ ├── campaign │ │ ├── ABTest.d.ts │ │ ├── ABTestMgr.d.ts │ │ ├── ABTestSegment.d.ts │ │ ├── AmountDiscount.d.ts │ │ ├── ApproachingDiscount.d.ts │ │ ├── BonusChoiceDiscount.d.ts │ │ ├── BonusDiscount.d.ts │ │ ├── Campaign.d.ts │ │ ├── CampaignMgr.d.ts │ │ ├── CampaignStatusCodes.d.ts │ │ ├── Coupon.d.ts │ │ ├── CouponMgr.d.ts │ │ ├── CouponRedemption.d.ts │ │ ├── CouponStatusCodes.d.ts │ │ ├── Discount.d.ts │ │ ├── DiscountPlan.d.ts │ │ ├── FixedPriceDiscount.d.ts │ │ ├── FixedPriceShippingDiscount.d.ts │ │ ├── FreeDiscount.d.ts │ │ ├── FreeShippingDiscount.d.ts │ │ ├── PercentageDiscount.d.ts │ │ ├── PercentageOptionDiscount.d.ts │ │ ├── PriceBookPriceDiscount.d.ts │ │ ├── Promotion.d.ts │ │ ├── PromotionMgr.d.ts │ │ ├── PromotionPlan.d.ts │ │ ├── SlotContent.d.ts │ │ ├── SourceCodeGroup.d.ts │ │ ├── SourceCodeInfo.d.ts │ │ ├── SourceCodeStatusCodes.d.ts │ │ └── TotalFixedPriceDiscount.d.ts │ ├── catalog │ │ ├── Catalog.d.ts │ │ ├── CatalogMgr.d.ts │ │ ├── Category.d.ts │ │ ├── CategoryAssignment.d.ts │ │ ├── CategoryLink.d.ts │ │ ├── PriceBook.d.ts │ │ ├── PriceBookMgr.d.ts │ │ ├── Product.d.ts │ │ ├── ProductActiveData.d.ts │ │ ├── ProductAttributeModel.d.ts │ │ ├── ProductAvailabilityLevels.d.ts │ │ ├── ProductAvailabilityModel.d.ts │ │ ├── ProductInventoryList.d.ts │ │ ├── ProductInventoryMgr.d.ts │ │ ├── ProductInventoryRecord.d.ts │ │ ├── ProductLink.d.ts │ │ ├── ProductMgr.d.ts │ │ ├── ProductOption.d.ts │ │ ├── ProductOptionModel.d.ts │ │ ├── ProductOptionValue.d.ts │ │ ├── ProductPriceInfo.d.ts │ │ ├── ProductPriceModel.d.ts │ │ ├── ProductPriceTable.d.ts │ │ ├── ProductSearchHit.d.ts │ │ ├── ProductSearchModel.d.ts │ │ ├── ProductSearchRefinementDefinition.d.ts │ │ ├── ProductSearchRefinementValue.d.ts │ │ ├── ProductSearchRefinements.d.ts │ │ ├── ProductVariationAttribute.d.ts │ │ ├── ProductVariationAttributeValue.d.ts │ │ ├── ProductVariationModel.d.ts │ │ ├── Recommendation.d.ts │ │ ├── SearchModel.d.ts │ │ ├── SearchRefinementDefinition.d.ts │ │ ├── SearchRefinementValue.d.ts │ │ ├── SearchRefinements.d.ts │ │ ├── SortingOption.d.ts │ │ ├── SortingRule.d.ts │ │ ├── Store.d.ts │ │ ├── StoreGroup.d.ts │ │ ├── StoreMgr.d.ts │ │ ├── Variant.d.ts │ │ └── VariationGroup.d.ts │ ├── content │ │ ├── Content.d.ts │ │ ├── ContentMgr.d.ts │ │ ├── ContentSearchModel.d.ts │ │ ├── ContentSearchRefinementDefinition.d.ts │ │ ├── ContentSearchRefinementValue.d.ts │ │ ├── ContentSearchRefinements.d.ts │ │ ├── Folder.d.ts │ │ ├── Library.d.ts │ │ ├── MarkupText.d.ts │ │ └── MediaFile.d.ts │ ├── crypto │ │ ├── CertificateRef.d.ts │ │ ├── Cipher.d.ts │ │ ├── Encoding.d.ts │ │ ├── KeyRef.d.ts │ │ ├── Mac.d.ts │ │ ├── MessageDigest.d.ts │ │ ├── SecureRandom.d.ts │ │ ├── Signature.d.ts │ │ ├── WeakCipher.d.ts │ │ ├── WeakMac.d.ts │ │ ├── WeakMessageDigest.d.ts │ │ └── WeakSignature.d.ts │ ├── customer │ │ ├── AddressBook.d.ts │ │ ├── AgentUserMgr.d.ts │ │ ├── AgentUserStatusCodes.d.ts │ │ ├── AuthenticationStatus.d.ts │ │ ├── Credentials.d.ts │ │ ├── Customer.d.ts │ │ ├── CustomerActiveData.d.ts │ │ ├── CustomerAddress.d.ts │ │ ├── CustomerCDPData.d.ts │ │ ├── CustomerContextMgr.d.ts │ │ ├── CustomerGroup.d.ts │ │ ├── CustomerList.d.ts │ │ ├── CustomerMgr.d.ts │ │ ├── CustomerPasswordConstraints.d.ts │ │ ├── CustomerPaymentInstrument.d.ts │ │ ├── CustomerStatusCodes.d.ts │ │ ├── EncryptedObject.d.ts │ │ ├── ExternalProfile.d.ts │ │ ├── OrderHistory.d.ts │ │ ├── ProductList.d.ts │ │ ├── ProductListItem.d.ts │ │ ├── ProductListItemPurchase.d.ts │ │ ├── ProductListMgr.d.ts │ │ ├── ProductListRegistrant.d.ts │ │ ├── Profile.d.ts │ │ ├── Wallet.d.ts │ │ └── oauth │ │ │ ├── OAuthAccessTokenResponse.d.ts │ │ │ ├── OAuthFinalizedResponse.d.ts │ │ │ ├── OAuthLoginFlowMgr.d.ts │ │ │ └── OAuthUserInfoResponse.d.ts │ ├── experience │ │ ├── AspectAttributeValidationException.d.ts │ │ ├── Component.d.ts │ │ ├── ComponentRenderSettings.d.ts │ │ ├── ComponentScriptContext.d.ts │ │ ├── CustomEditor.d.ts │ │ ├── CustomEditorResources.d.ts │ │ ├── Page.d.ts │ │ ├── PageMgr.d.ts │ │ ├── PageScriptContext.d.ts │ │ ├── Region.d.ts │ │ ├── RegionRenderSettings.d.ts │ │ ├── cms │ │ │ └── CMSRecord.d.ts │ │ └── image │ │ │ ├── FocalPoint.d.ts │ │ │ ├── Image.d.ts │ │ │ └── ImageMetaData.d.ts │ ├── extensions │ │ ├── applepay │ │ │ ├── ApplePayHookResult.d.ts │ │ │ └── ApplePayHooks.d.ts │ │ ├── facebook │ │ │ ├── FacebookFeedHooks.d.ts │ │ │ └── FacebookProduct.d.ts │ │ ├── paymentapi │ │ │ └── PaymentApiHooks.d.ts │ │ ├── paymentrequest │ │ │ ├── PaymentRequestHookResult.d.ts │ │ │ └── PaymentRequestHooks.d.ts │ │ ├── payments │ │ │ ├── SalesforcePayPalOrder.d.ts │ │ │ ├── SalesforcePayPalOrderAddress.d.ts │ │ │ ├── SalesforcePayPalOrderPayer.d.ts │ │ │ ├── SalesforcePaymentIntent.d.ts │ │ │ ├── SalesforcePaymentMethod.d.ts │ │ │ ├── SalesforcePaymentRequest.d.ts │ │ │ ├── SalesforcePaymentsHooks.d.ts │ │ │ ├── SalesforcePaymentsMgr.d.ts │ │ │ └── SalesforcePaymentsSiteConfiguration.d.ts │ │ └── pinterest │ │ │ ├── PinterestAvailability.d.ts │ │ │ ├── PinterestFeedHooks.d.ts │ │ │ ├── PinterestOrder.d.ts │ │ │ ├── PinterestOrderHooks.d.ts │ │ │ └── PinterestProduct.d.ts │ ├── io │ │ ├── CSVStreamReader.d.ts │ │ ├── CSVStreamWriter.d.ts │ │ ├── File.d.ts │ │ ├── FileReader.d.ts │ │ ├── FileWriter.d.ts │ │ ├── InputStream.d.ts │ │ ├── OutputStream.d.ts │ │ ├── PrintWriter.d.ts │ │ ├── RandomAccessFileReader.d.ts │ │ ├── Reader.d.ts │ │ ├── StringWriter.d.ts │ │ ├── Writer.d.ts │ │ ├── XMLIndentingStreamWriter.d.ts │ │ ├── XMLStreamConstants.d.ts │ │ ├── XMLStreamReader.d.ts │ │ └── XMLStreamWriter.d.ts │ ├── job │ │ ├── JobExecution.d.ts │ │ └── JobStepExecution.d.ts │ ├── net │ │ ├── FTPClient.d.ts │ │ ├── FTPFileInfo.d.ts │ │ ├── HTTPClient.d.ts │ │ ├── HTTPRequestPart.d.ts │ │ ├── Mail.d.ts │ │ ├── SFTPClient.d.ts │ │ ├── SFTPFileInfo.d.ts │ │ ├── WebDAVClient.d.ts │ │ └── WebDAVFileInfo.d.ts │ ├── object │ │ ├── ActiveData.d.ts │ │ ├── CustomAttributes.d.ts │ │ ├── CustomObject.d.ts │ │ ├── CustomObjectMgr.d.ts │ │ ├── Extensible.d.ts │ │ ├── ExtensibleObject.d.ts │ │ ├── Note.d.ts │ │ ├── ObjectAttributeDefinition.d.ts │ │ ├── ObjectAttributeGroup.d.ts │ │ ├── ObjectAttributeValueDefinition.d.ts │ │ ├── ObjectTypeDefinition.d.ts │ │ ├── PersistentObject.d.ts │ │ ├── SimpleExtensible.d.ts │ │ └── SystemObjectMgr.d.ts │ ├── order │ │ ├── AbstractItem.d.ts │ │ ├── AbstractItemCtnr.d.ts │ │ ├── Appeasement.d.ts │ │ ├── AppeasementItem.d.ts │ │ ├── Basket.d.ts │ │ ├── BasketMgr.d.ts │ │ ├── BonusDiscountLineItem.d.ts │ │ ├── CouponLineItem.d.ts │ │ ├── CreateAgentBasketLimitExceededException.d.ts │ │ ├── CreateBasketFromOrderException.d.ts │ │ ├── CreateCouponLineItemException.d.ts │ │ ├── CreateOrderException.d.ts │ │ ├── GiftCertificate.d.ts │ │ ├── GiftCertificateLineItem.d.ts │ │ ├── GiftCertificateMgr.d.ts │ │ ├── GiftCertificateStatusCodes.d.ts │ │ ├── Invoice.d.ts │ │ ├── InvoiceItem.d.ts │ │ ├── LineItem.d.ts │ │ ├── LineItemCtnr.d.ts │ │ ├── Order.d.ts │ │ ├── OrderAddress.d.ts │ │ ├── OrderItem.d.ts │ │ ├── OrderMgr.d.ts │ │ ├── OrderPaymentInstrument.d.ts │ │ ├── OrderProcessStatusCodes.d.ts │ │ ├── PaymentCard.d.ts │ │ ├── PaymentInstrument.d.ts │ │ ├── PaymentMethod.d.ts │ │ ├── PaymentMgr.d.ts │ │ ├── PaymentProcessor.d.ts │ │ ├── PaymentStatusCodes.d.ts │ │ ├── PaymentTransaction.d.ts │ │ ├── PriceAdjustment.d.ts │ │ ├── PriceAdjustmentLimitTypes.d.ts │ │ ├── ProductLineItem.d.ts │ │ ├── ProductShippingCost.d.ts │ │ ├── ProductShippingLineItem.d.ts │ │ ├── ProductShippingModel.d.ts │ │ ├── Return.d.ts │ │ ├── ReturnCase.d.ts │ │ ├── ReturnCaseItem.d.ts │ │ ├── ReturnItem.d.ts │ │ ├── Shipment.d.ts │ │ ├── ShipmentShippingCost.d.ts │ │ ├── ShipmentShippingModel.d.ts │ │ ├── ShippingLineItem.d.ts │ │ ├── ShippingLocation.d.ts │ │ ├── ShippingMethod.d.ts │ │ ├── ShippingMgr.d.ts │ │ ├── ShippingOrder.d.ts │ │ ├── ShippingOrderItem.d.ts │ │ ├── SumItem.d.ts │ │ ├── TaxGroup.d.ts │ │ ├── TaxItem.d.ts │ │ ├── TaxMgr.d.ts │ │ ├── TrackingInfo.d.ts │ │ ├── TrackingRef.d.ts │ │ └── hooks │ │ │ ├── CalculateHooks.d.ts │ │ │ ├── OrderHooks.d.ts │ │ │ ├── PaymentHooks.d.ts │ │ │ ├── ReturnHooks.d.ts │ │ │ └── ShippingOrderHooks.d.ts │ ├── rpc │ │ ├── SOAPUtil.d.ts │ │ ├── Stub.d.ts │ │ └── WebReference.d.ts │ ├── sitemap │ │ ├── SitemapFile.d.ts │ │ └── SitemapMgr.d.ts │ ├── suggest │ │ ├── BrandSuggestions.d.ts │ │ ├── CategorySuggestions.d.ts │ │ ├── ContentSuggestions.d.ts │ │ ├── CustomSuggestions.d.ts │ │ ├── ProductSuggestions.d.ts │ │ ├── SearchPhraseSuggestions.d.ts │ │ ├── SuggestModel.d.ts │ │ ├── SuggestedCategory.d.ts │ │ ├── SuggestedContent.d.ts │ │ ├── SuggestedPhrase.d.ts │ │ ├── SuggestedProduct.d.ts │ │ ├── SuggestedTerm.d.ts │ │ ├── SuggestedTerms.d.ts │ │ └── Suggestions.d.ts │ ├── svc │ │ ├── FTPService.d.ts │ │ ├── FTPServiceDefinition.d.ts │ │ ├── HTTPFormService.d.ts │ │ ├── HTTPFormServiceDefinition.d.ts │ │ ├── HTTPService.d.ts │ │ ├── HTTPServiceDefinition.d.ts │ │ ├── LocalServiceRegistry.d.ts │ │ ├── Result.d.ts │ │ ├── SOAPService.d.ts │ │ ├── SOAPServiceDefinition.d.ts │ │ ├── Service.d.ts │ │ ├── ServiceCallback.d.ts │ │ ├── ServiceConfig.d.ts │ │ ├── ServiceCredential.d.ts │ │ ├── ServiceDefinition.d.ts │ │ ├── ServiceProfile.d.ts │ │ └── ServiceRegistry.d.ts │ ├── system │ │ ├── AgentUserStatusCodes.d.ts │ │ ├── Cache.d.ts │ │ ├── CacheMgr.d.ts │ │ ├── HookMgr.d.ts │ │ ├── InternalObject.d.ts │ │ ├── JobProcessMonitor.d.ts │ │ ├── Log.d.ts │ │ ├── LogNDC.d.ts │ │ ├── Logger.d.ts │ │ ├── OrganizationPreferences.d.ts │ │ ├── Pipelet.d.ts │ │ ├── Pipeline.d.ts │ │ ├── PipelineDictionary.d.ts │ │ ├── Request.d.ts │ │ ├── RequestHooks.d.ts │ │ ├── Response.d.ts │ │ ├── Session.d.ts │ │ ├── Site.d.ts │ │ ├── SitePreferences.d.ts │ │ ├── Status.d.ts │ │ ├── StatusItem.d.ts │ │ ├── System.d.ts │ │ └── Transaction.d.ts │ ├── template │ │ ├── ISML.d.ts │ │ └── Velocity.d.ts │ ├── util │ │ ├── ArrayList.d.ts │ │ ├── Assert.d.ts │ │ ├── BigInteger.d.ts │ │ ├── Bytes.d.ts │ │ ├── Calendar.d.ts │ │ ├── Collection.d.ts │ │ ├── Currency.d.ts │ │ ├── DateUtils.d.ts │ │ ├── Decimal.d.ts │ │ ├── FilteringCollection.d.ts │ │ ├── Geolocation.d.ts │ │ ├── HashMap.d.ts │ │ ├── HashSet.d.ts │ │ ├── Iterator.d.ts │ │ ├── LinkedHashMap.d.ts │ │ ├── LinkedHashSet.d.ts │ │ ├── List.d.ts │ │ ├── Locale.d.ts │ │ ├── Map.d.ts │ │ ├── MapEntry.d.ts │ │ ├── MappingKey.d.ts │ │ ├── MappingMgr.d.ts │ │ ├── PropertyComparator.d.ts │ │ ├── SecureEncoder.d.ts │ │ ├── SecureFilter.d.ts │ │ ├── SeekableIterator.d.ts │ │ ├── Set.d.ts │ │ ├── SortedMap.d.ts │ │ ├── SortedSet.d.ts │ │ ├── StringUtils.d.ts │ │ ├── Template.d.ts │ │ └── UUIDUtils.d.ts │ ├── value │ │ ├── EnumValue.d.ts │ │ ├── MimeEncodedText.d.ts │ │ ├── Money.d.ts │ │ └── Quantity.d.ts │ ├── web │ │ ├── CSRFProtection.d.ts │ │ ├── ClickStream.d.ts │ │ ├── ClickStreamEntry.d.ts │ │ ├── Cookie.d.ts │ │ ├── Cookies.d.ts │ │ ├── Form.d.ts │ │ ├── FormAction.d.ts │ │ ├── FormElement.d.ts │ │ ├── FormElementValidationResult.d.ts │ │ ├── FormField.d.ts │ │ ├── FormFieldOption.d.ts │ │ ├── FormFieldOptions.d.ts │ │ ├── FormGroup.d.ts │ │ ├── FormList.d.ts │ │ ├── FormListItem.d.ts │ │ ├── Forms.d.ts │ │ ├── HttpParameter.d.ts │ │ ├── HttpParameterMap.d.ts │ │ ├── LoopIterator.d.ts │ │ ├── PageMetaData.d.ts │ │ ├── PageMetaTag.d.ts │ │ ├── PagingModel.d.ts │ │ ├── Resource.d.ts │ │ ├── URL.d.ts │ │ ├── URLAction.d.ts │ │ ├── URLParameter.d.ts │ │ ├── URLRedirect.d.ts │ │ ├── URLRedirectMgr.d.ts │ │ └── URLUtils.d.ts │ └── ws │ │ ├── Port.d.ts │ │ ├── WSUtil.d.ts │ │ └── WebReference2.d.ts │ ├── global.d.ts │ └── index.d.ts ├── LICENSE ├── README.md ├── api ├── generics.properties └── patches.json ├── media ├── vscode-autocomplete.png └── vscode-select.png ├── package.json ├── src ├── banner.txt ├── customtypes.ts ├── generate.ts ├── generateconstants.ts ├── makepatch.ts ├── models.ts ├── scrape.ts ├── setup.ts ├── tsplugin.ts └── updateattrs.ts ├── test ├── compiletest.ts ├── project │ ├── @types │ │ └── dw │ │ │ └── index.d.ts │ ├── cartridges │ │ ├── aaa │ │ │ └── cartridge │ │ │ │ └── .keep │ │ ├── bbb │ │ │ └── cartridge │ │ │ │ └── .keep │ │ └── missing │ │ │ └── .keep │ ├── meta │ │ └── system-objecttype-extensions.xml │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── samples │ └── method.html ├── testparse.ts └── tsconfig.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact = true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.16.0 -------------------------------------------------------------------------------- /@types/sfcc/APIException.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = APIException; -------------------------------------------------------------------------------- /@types/sfcc/ConversionError.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = ConversionError; -------------------------------------------------------------------------------- /@types/sfcc/ES6Iterator.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = ES6Iterator; -------------------------------------------------------------------------------- /@types/sfcc/Fault.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = Fault; -------------------------------------------------------------------------------- /@types/sfcc/Generator.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = Generator; -------------------------------------------------------------------------------- /@types/sfcc/IOError.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = IOError; -------------------------------------------------------------------------------- /@types/sfcc/InternalError.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = InternalError; -------------------------------------------------------------------------------- /@types/sfcc/Iterable.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = Iterable; -------------------------------------------------------------------------------- /@types/sfcc/Module.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = NodeModule; -------------------------------------------------------------------------------- /@types/sfcc/Namespace.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = Namespace; -------------------------------------------------------------------------------- /@types/sfcc/QName.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = QName; -------------------------------------------------------------------------------- /@types/sfcc/StopIteration.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = StopIteration; -------------------------------------------------------------------------------- /@types/sfcc/SystemError.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = SystemError; -------------------------------------------------------------------------------- /@types/sfcc/XML.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = XML; -------------------------------------------------------------------------------- /@types/sfcc/XMLList.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = XMLList; -------------------------------------------------------------------------------- /@types/sfcc/XMLStreamError.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = XMLStreamError; -------------------------------------------------------------------------------- /@types/sfcc/attrs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/attrs.d.ts -------------------------------------------------------------------------------- /@types/sfcc/attrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/attrs.txt -------------------------------------------------------------------------------- /@types/sfcc/dw/alert/Alert.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/alert/Alert.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/alert/Alerts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/alert/Alerts.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/ABTest.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.campaign.ABTest; -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/ABTestMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.campaign.ABTestMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/ABTestSegment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/ABTestSegment.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/AmountDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/AmountDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/ApproachingDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/ApproachingDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/BonusChoiceDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/BonusChoiceDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/BonusDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/BonusDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/Campaign.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/Campaign.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/CampaignMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/CampaignMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/CampaignStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/CampaignStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/Coupon.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.campaign.Coupon; -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/CouponMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.campaign.CouponMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/CouponRedemption.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/CouponRedemption.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/CouponStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/CouponStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/Discount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/Discount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/DiscountPlan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/DiscountPlan.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/FixedPriceDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/FixedPriceDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/FixedPriceShippingDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/FixedPriceShippingDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/FreeDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/FreeDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/FreeShippingDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/FreeShippingDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/PercentageDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/PercentageDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/PercentageOptionDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/PercentageOptionDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/PriceBookPriceDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/PriceBookPriceDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/Promotion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/Promotion.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/PromotionMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/PromotionMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/PromotionPlan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/PromotionPlan.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/SlotContent.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.campaign.SlotContent; -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/SourceCodeGroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/SourceCodeGroup.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/SourceCodeInfo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/SourceCodeInfo.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/SourceCodeStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/SourceCodeStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/campaign/TotalFixedPriceDiscount.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/campaign/TotalFixedPriceDiscount.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/Catalog.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/Catalog.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/CatalogMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/CatalogMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/Category.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.Category; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/CategoryAssignment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/CategoryAssignment.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/CategoryLink.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.CategoryLink; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/PriceBook.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.PriceBook; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/PriceBookMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.PriceBookMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/Product.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.Product; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductActiveData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductActiveData.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductAttributeModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductAttributeModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductAvailabilityLevels.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductAvailabilityLevels.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductAvailabilityModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductAvailabilityModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductInventoryList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductInventoryList.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductInventoryMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductInventoryMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductInventoryRecord.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductInventoryRecord.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductLink.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.ProductLink; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.ProductMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductOption.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductOption.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductOptionModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductOptionModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductOptionValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductOptionValue.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductPriceInfo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductPriceInfo.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductPriceModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductPriceModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductPriceTable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductPriceTable.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductSearchHit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductSearchHit.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductSearchModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductSearchModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductSearchRefinementDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductSearchRefinementDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductSearchRefinementValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductSearchRefinementValue.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductSearchRefinements.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductSearchRefinements.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductVariationAttribute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductVariationAttribute.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductVariationAttributeValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductVariationAttributeValue.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/ProductVariationModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/ProductVariationModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/Recommendation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/Recommendation.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/SearchModel.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.SearchModel; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/SearchRefinementDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/SearchRefinementDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/SearchRefinementValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/SearchRefinementValue.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/SearchRefinements.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/SearchRefinements.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/SortingOption.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/SortingOption.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/SortingRule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/SortingRule.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/Store.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.Store; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/StoreGroup.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.StoreGroup; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/StoreMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.catalog.StoreMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/Variant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/Variant.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/catalog/VariationGroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/catalog/VariationGroup.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/Content.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/Content.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/ContentMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/ContentMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/ContentSearchModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/ContentSearchModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/ContentSearchRefinementDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/ContentSearchRefinementDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/ContentSearchRefinementValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/ContentSearchRefinementValue.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/ContentSearchRefinements.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/ContentSearchRefinements.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/Folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/content/Folder.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/content/Library.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.content.Library; -------------------------------------------------------------------------------- /@types/sfcc/dw/content/MarkupText.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.content.MarkupText; -------------------------------------------------------------------------------- /@types/sfcc/dw/content/MediaFile.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.content.MediaFile; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/CertificateRef.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/crypto/CertificateRef.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/Cipher.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.Cipher; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/Encoding.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/crypto/Encoding.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/KeyRef.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.KeyRef; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/Mac.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.Mac; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/MessageDigest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/crypto/MessageDigest.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/SecureRandom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/crypto/SecureRandom.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/Signature.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.Signature; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/WeakCipher.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.WeakCipher; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/WeakMac.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.WeakMac; -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/WeakMessageDigest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/crypto/WeakMessageDigest.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/crypto/WeakSignature.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.crypto.WeakSignature; -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/AddressBook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/AddressBook.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/AgentUserMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.customer.AgentUserMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/AgentUserStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/AgentUserStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/AuthenticationStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/AuthenticationStatus.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/Credentials.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/Credentials.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/Customer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/Customer.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerActiveData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerActiveData.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerAddress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerAddress.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerCDPData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerCDPData.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerContextMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerContextMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerGroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerGroup.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerList.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerPasswordConstraints.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerPasswordConstraints.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerPaymentInstrument.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerPaymentInstrument.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/CustomerStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/CustomerStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/EncryptedObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/EncryptedObject.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/ExternalProfile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/ExternalProfile.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/OrderHistory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/OrderHistory.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/ProductList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/ProductList.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/ProductListItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/ProductListItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/ProductListItemPurchase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/ProductListItemPurchase.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/ProductListMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/ProductListMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/ProductListRegistrant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/ProductListRegistrant.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/Profile.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.customer.Profile; -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/Wallet.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.customer.Wallet; -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/oauth/OAuthAccessTokenResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/oauth/OAuthAccessTokenResponse.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/oauth/OAuthFinalizedResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/oauth/OAuthFinalizedResponse.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/oauth/OAuthLoginFlowMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/oauth/OAuthLoginFlowMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/customer/oauth/OAuthUserInfoResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/customer/oauth/OAuthUserInfoResponse.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/AspectAttributeValidationException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/AspectAttributeValidationException.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/Component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/Component.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/ComponentRenderSettings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/ComponentRenderSettings.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/ComponentScriptContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/ComponentScriptContext.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/CustomEditor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/CustomEditor.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/CustomEditorResources.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/CustomEditorResources.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/Page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/Page.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/PageMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/PageMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/PageScriptContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/PageScriptContext.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/Region.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/Region.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/RegionRenderSettings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/RegionRenderSettings.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/cms/CMSRecord.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/cms/CMSRecord.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/image/FocalPoint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/image/FocalPoint.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/image/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/image/Image.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/experience/image/ImageMetaData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/experience/image/ImageMetaData.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/applepay/ApplePayHookResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/applepay/ApplePayHookResult.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/applepay/ApplePayHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/applepay/ApplePayHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/facebook/FacebookFeedHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/facebook/FacebookFeedHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/facebook/FacebookProduct.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/facebook/FacebookProduct.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/paymentapi/PaymentApiHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/paymentapi/PaymentApiHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/paymentrequest/PaymentRequestHookResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/paymentrequest/PaymentRequestHookResult.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/paymentrequest/PaymentRequestHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/paymentrequest/PaymentRequestHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePayPalOrder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePayPalOrder.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePayPalOrderAddress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePayPalOrderAddress.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePayPalOrderPayer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePayPalOrderPayer.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePaymentIntent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePaymentIntent.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePaymentMethod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePaymentMethod.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePaymentRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePaymentRequest.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePaymentsHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePaymentsHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePaymentsMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePaymentsMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/payments/SalesforcePaymentsSiteConfiguration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/payments/SalesforcePaymentsSiteConfiguration.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/pinterest/PinterestAvailability.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/pinterest/PinterestAvailability.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/pinterest/PinterestFeedHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/pinterest/PinterestFeedHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/pinterest/PinterestOrder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/pinterest/PinterestOrder.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/pinterest/PinterestOrderHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/pinterest/PinterestOrderHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/extensions/pinterest/PinterestProduct.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/extensions/pinterest/PinterestProduct.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/io/CSVStreamReader.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.CSVStreamReader; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/CSVStreamWriter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.CSVStreamWriter; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/File.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.File; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/FileReader.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.FileReader; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/FileWriter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.FileWriter; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/InputStream.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.InputStream; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/OutputStream.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.OutputStream; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/PrintWriter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.PrintWriter; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/RandomAccessFileReader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/io/RandomAccessFileReader.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/io/Reader.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.Reader; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/StringWriter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.StringWriter; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/Writer.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.Writer; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/XMLIndentingStreamWriter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/io/XMLIndentingStreamWriter.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/io/XMLStreamConstants.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.XMLStreamConstants; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/XMLStreamReader.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.XMLStreamReader; -------------------------------------------------------------------------------- /@types/sfcc/dw/io/XMLStreamWriter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.io.XMLStreamWriter; -------------------------------------------------------------------------------- /@types/sfcc/dw/job/JobExecution.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.job.JobExecution; -------------------------------------------------------------------------------- /@types/sfcc/dw/job/JobStepExecution.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.job.JobStepExecution; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/FTPClient.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.FTPClient; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/FTPFileInfo.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.FTPFileInfo; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/HTTPClient.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.HTTPClient; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/HTTPRequestPart.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.HTTPRequestPart; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/Mail.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.Mail; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/SFTPClient.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.SFTPClient; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/SFTPFileInfo.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.SFTPFileInfo; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/WebDAVClient.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.WebDAVClient; -------------------------------------------------------------------------------- /@types/sfcc/dw/net/WebDAVFileInfo.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.net.WebDAVFileInfo; -------------------------------------------------------------------------------- /@types/sfcc/dw/object/ActiveData.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.object.ActiveData; -------------------------------------------------------------------------------- /@types/sfcc/dw/object/CustomAttributes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/CustomAttributes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/CustomObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/CustomObject.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/CustomObjectMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/CustomObjectMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/Extensible.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/Extensible.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/ExtensibleObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/ExtensibleObject.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/Note.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.object.Note; -------------------------------------------------------------------------------- /@types/sfcc/dw/object/ObjectAttributeDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/ObjectAttributeDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/ObjectAttributeGroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/ObjectAttributeGroup.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/ObjectAttributeValueDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/ObjectAttributeValueDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/ObjectTypeDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/ObjectTypeDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/PersistentObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/PersistentObject.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/SimpleExtensible.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/SimpleExtensible.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/object/SystemObjectMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/object/SystemObjectMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/AbstractItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/AbstractItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/AbstractItemCtnr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/AbstractItemCtnr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/Appeasement.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/Appeasement.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/AppeasementItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/AppeasementItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/Basket.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.Basket; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/BasketMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.BasketMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/BonusDiscountLineItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/BonusDiscountLineItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/CouponLineItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/CouponLineItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/CreateAgentBasketLimitExceededException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/CreateAgentBasketLimitExceededException.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/CreateBasketFromOrderException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/CreateBasketFromOrderException.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/CreateCouponLineItemException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/CreateCouponLineItemException.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/CreateOrderException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/CreateOrderException.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/GiftCertificate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/GiftCertificate.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/GiftCertificateLineItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/GiftCertificateLineItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/GiftCertificateMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/GiftCertificateMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/GiftCertificateStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/GiftCertificateStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/Invoice.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.Invoice; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/InvoiceItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/InvoiceItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/LineItem.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.LineItem; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/LineItemCtnr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.LineItemCtnr; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/Order.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/Order.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/OrderAddress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/OrderAddress.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/OrderItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/OrderItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/OrderMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/OrderMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/OrderPaymentInstrument.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/OrderPaymentInstrument.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/OrderProcessStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/OrderProcessStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentCard.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.PaymentCard; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentInstrument.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PaymentInstrument.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentMethod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PaymentMethod.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.PaymentMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentProcessor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PaymentProcessor.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PaymentStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PaymentTransaction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PaymentTransaction.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PriceAdjustment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PriceAdjustment.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/PriceAdjustmentLimitTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/PriceAdjustmentLimitTypes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ProductLineItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ProductLineItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ProductShippingCost.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ProductShippingCost.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ProductShippingLineItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ProductShippingLineItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ProductShippingModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ProductShippingModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/Return.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.Return; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ReturnCase.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.ReturnCase; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ReturnCaseItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ReturnCaseItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ReturnItem.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.ReturnItem; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/Shipment.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.Shipment; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShipmentShippingCost.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShipmentShippingCost.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShipmentShippingModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShipmentShippingModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShippingLineItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShippingLineItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShippingLocation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShippingLocation.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShippingMethod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShippingMethod.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShippingMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.ShippingMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShippingOrder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShippingOrder.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/ShippingOrderItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/ShippingOrderItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/SumItem.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.SumItem; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/TaxGroup.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.TaxGroup; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/TaxItem.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.TaxItem; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/TaxMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.TaxMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/TrackingInfo.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.TrackingInfo; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/TrackingRef.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.order.TrackingRef; -------------------------------------------------------------------------------- /@types/sfcc/dw/order/hooks/CalculateHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/hooks/CalculateHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/hooks/OrderHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/hooks/OrderHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/hooks/PaymentHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/hooks/PaymentHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/hooks/ReturnHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/hooks/ReturnHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/order/hooks/ShippingOrderHooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/order/hooks/ShippingOrderHooks.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/rpc/SOAPUtil.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.rpc.SOAPUtil; -------------------------------------------------------------------------------- /@types/sfcc/dw/rpc/Stub.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.rpc.Stub; -------------------------------------------------------------------------------- /@types/sfcc/dw/rpc/WebReference.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/rpc/WebReference.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/sitemap/SitemapFile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/sitemap/SitemapFile.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/sitemap/SitemapMgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/sitemap/SitemapMgr.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/BrandSuggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/BrandSuggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/CategorySuggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/CategorySuggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/ContentSuggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/ContentSuggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/CustomSuggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/CustomSuggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/ProductSuggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/ProductSuggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SearchPhraseSuggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SearchPhraseSuggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestModel.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestedCategory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestedCategory.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestedContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestedContent.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestedPhrase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestedPhrase.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestedProduct.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestedProduct.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestedTerm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestedTerm.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/SuggestedTerms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/SuggestedTerms.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/suggest/Suggestions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/suggest/Suggestions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/FTPService.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.FTPService; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/FTPServiceDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/FTPServiceDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/HTTPFormService.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.HTTPFormService; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/HTTPFormServiceDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/HTTPFormServiceDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/HTTPService.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.HTTPService; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/HTTPServiceDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/HTTPServiceDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/LocalServiceRegistry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/LocalServiceRegistry.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/Result.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.Result; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/SOAPService.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.SOAPService; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/SOAPServiceDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/SOAPServiceDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/Service.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.Service; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/ServiceCallback.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.ServiceCallback; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/ServiceConfig.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.ServiceConfig; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/ServiceCredential.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/ServiceCredential.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/ServiceDefinition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/ServiceDefinition.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/ServiceProfile.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.svc.ServiceProfile; -------------------------------------------------------------------------------- /@types/sfcc/dw/svc/ServiceRegistry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/svc/ServiceRegistry.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/AgentUserStatusCodes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/AgentUserStatusCodes.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Cache.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Cache; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/CacheMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.CacheMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/HookMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.HookMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/InternalObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/InternalObject.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/JobProcessMonitor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/JobProcessMonitor.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Log.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Log; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/LogNDC.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.LogNDC; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Logger.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Logger; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/OrganizationPreferences.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/OrganizationPreferences.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Pipelet.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Pipelet; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Pipeline.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Pipeline; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/PipelineDictionary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/PipelineDictionary.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Request.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Request; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/RequestHooks.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.RequestHooks; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Response.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Response; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Session.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Session; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Site.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Site; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/SitePreferences.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/SitePreferences.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Status.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.system.Status; -------------------------------------------------------------------------------- /@types/sfcc/dw/system/StatusItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/StatusItem.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/System.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/System.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/system/Transaction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/system/Transaction.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/template/ISML.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.template.ISML; -------------------------------------------------------------------------------- /@types/sfcc/dw/template/Velocity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/template/Velocity.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/ArrayList.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.ArrayList; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Assert.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Assert; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/BigInteger.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.BigInteger; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Bytes.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Bytes; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Calendar.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Calendar; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Collection.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Collection; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Currency.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/Currency.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/DateUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/DateUtils.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Decimal.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Decimal; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/FilteringCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/FilteringCollection.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Geolocation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/Geolocation.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/HashMap.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.HashMap; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/HashSet.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.HashSet; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Iterator.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Iterator; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/LinkedHashMap.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.LinkedHashMap; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/LinkedHashSet.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.LinkedHashSet; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/List.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.List; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Locale.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Locale; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Map.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Map; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/MapEntry.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.MapEntry; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/MappingKey.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.MappingKey; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/MappingMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.MappingMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/PropertyComparator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/PropertyComparator.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/SecureEncoder.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.SecureEncoder; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/SecureFilter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.SecureFilter; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/SeekableIterator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/SeekableIterator.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Set.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Set; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/SortedMap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/SortedMap.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/SortedSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/SortedSet.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/StringUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/StringUtils.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/util/Template.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.util.Template; -------------------------------------------------------------------------------- /@types/sfcc/dw/util/UUIDUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/util/UUIDUtils.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/value/EnumValue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/value/EnumValue.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/value/MimeEncodedText.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.value.MimeEncodedText; -------------------------------------------------------------------------------- /@types/sfcc/dw/value/Money.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.value.Money; -------------------------------------------------------------------------------- /@types/sfcc/dw/value/Quantity.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.value.Quantity; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/CSRFProtection.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.CSRFProtection; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/ClickStream.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.ClickStream; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/ClickStreamEntry.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.ClickStreamEntry; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/Cookie.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.Cookie; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/Cookies.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.Cookies; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/Form.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.Form; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormAction.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormAction; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormElement.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormElement; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormElementValidationResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/web/FormElementValidationResult.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormField.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormField; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormFieldOption.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormFieldOption; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormFieldOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/web/FormFieldOptions.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormGroup.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormGroup; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormList.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormList; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/FormListItem.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.FormListItem; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/Forms.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.Forms; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/HttpParameter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/web/HttpParameter.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/web/HttpParameterMap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/web/HttpParameterMap.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/web/LoopIterator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/web/LoopIterator.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/web/PageMetaData.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.PageMetaData; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/PageMetaTag.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.PageMetaTag; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/PagingModel.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.PagingModel; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/Resource.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.Resource; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/URL.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.URL; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/URLAction.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.URLAction; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/URLParameter.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.URLParameter; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/URLRedirect.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.URLRedirect; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/URLRedirectMgr.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.URLRedirectMgr; -------------------------------------------------------------------------------- /@types/sfcc/dw/web/URLUtils.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.web.URLUtils; -------------------------------------------------------------------------------- /@types/sfcc/dw/ws/Port.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/ws/Port.d.ts -------------------------------------------------------------------------------- /@types/sfcc/dw/ws/WSUtil.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = dw.ws.WSUtil; -------------------------------------------------------------------------------- /@types/sfcc/dw/ws/WebReference2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/dw/ws/WebReference2.d.ts -------------------------------------------------------------------------------- /@types/sfcc/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export = global; -------------------------------------------------------------------------------- /@types/sfcc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/@types/sfcc/index.d.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/README.md -------------------------------------------------------------------------------- /api/generics.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/api/generics.properties -------------------------------------------------------------------------------- /api/patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/api/patches.json -------------------------------------------------------------------------------- /media/vscode-autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/media/vscode-autocomplete.png -------------------------------------------------------------------------------- /media/vscode-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/media/vscode-select.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/package.json -------------------------------------------------------------------------------- /src/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/banner.txt -------------------------------------------------------------------------------- /src/customtypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/customtypes.ts -------------------------------------------------------------------------------- /src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/generate.ts -------------------------------------------------------------------------------- /src/generateconstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/generateconstants.ts -------------------------------------------------------------------------------- /src/makepatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/makepatch.ts -------------------------------------------------------------------------------- /src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/models.ts -------------------------------------------------------------------------------- /src/scrape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/scrape.ts -------------------------------------------------------------------------------- /src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/setup.ts -------------------------------------------------------------------------------- /src/tsplugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/tsplugin.ts -------------------------------------------------------------------------------- /src/updateattrs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/src/updateattrs.ts -------------------------------------------------------------------------------- /test/compiletest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/compiletest.ts -------------------------------------------------------------------------------- /test/project/@types/dw/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/project/@types/dw/index.d.ts -------------------------------------------------------------------------------- /test/project/cartridges/aaa/cartridge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/project/cartridges/bbb/cartridge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/project/cartridges/missing/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/project/meta/system-objecttype-extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/project/meta/system-objecttype-extensions.xml -------------------------------------------------------------------------------- /test/project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/project/package-lock.json -------------------------------------------------------------------------------- /test/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/project/package.json -------------------------------------------------------------------------------- /test/project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/project/tsconfig.json -------------------------------------------------------------------------------- /test/samples/method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/samples/method.html -------------------------------------------------------------------------------- /test/testparse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/testparse.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmindlab/sfcc-dts/HEAD/tsconfig.json --------------------------------------------------------------------------------