Typescript SDK Type Docs
    Preparing search index...

    Module History API SDK

    Typescript SDK for Composable Commerce Audit log (history) APIs.

    <script src="https://unpkg.com/@commercetools/ts-client@latest/dist/commercetools-sdk-client-v3.umd.js"></script>
    <script src="https://unpkg.com/@commercetools/history-sdk@latest/dist/commercetools-history-sdk.umd.js"></script>
    <script>
    // global: @commercetools/ts-client
    // global: @commercetools/history-sdk
    ;(function () {
    // We can now access the ts-client and history-sdk object as:
    // const { ClientBuilder } = this['@commercetools/ts-client']
    // const { createApiBuilderFromCtpClient } = this['@commercetools/history-sdk']
    // or
    // const { ClientBuilder } = window['@commercetools/ts-client']
    // const { createApiBuilderFromCtpClient } = window['@commercetools/history-sdk']
    })()
    </script>
    npm install --save @commercetools/ts-client
    npm install --save @commercetools/history-sdk
    const {
    ClientBuilder,
    createAuthForClientCredentialsFlow,
    createHttpClient,
    } = require('@commercetools/ts-client')
    const { createApiBuilderFromCtpClient } = require('@commercetools/history-sdk')

    const projectKey = 'mc-project-key'
    const authMiddlewareOptions = {
    host: 'https://auth.europe-west1.gcp.commercetools.com',
    projectKey,
    credentials: {
    clientId: 'mc-client-id',
    clientSecret: 'mc-client-secrets',
    },
    oauthUri: '/oauth/token', // - optional: custom oauthUri
    scopes: [`manage_project:${projectKey}`],
    fetch,
    }

    const httpMiddlewareOptions = {
    host: 'https://history.europe-west1.gcp.commercetools.com',
    fetch,
    }

    const client = new ClientBuilder()
    .withProjectKey(projectKey)
    .withMiddleware(createAuthForClientCredentialsFlow(authMiddlewareOptions))
    .withMiddleware(createHttpClient(httpMiddlewareOptions))
    .withUserAgentMiddleware()
    .build()

    // or
    const client = new ClientBuilder()
    .withProjectKey(projectKey)
    .withClientCredentialsFlow(authMiddlewareOptions)
    .withHttpMiddleware(httpMiddlewareOptions)
    .withUserAgentMiddleware()
    .build()

    const apiRoot = createApiBuilderFromCtpClient(client)

    // calling the history-sdk functions
    // get project details
    apiRoot
    .withProjectKey({ projectKey })
    .recommendations()
    .projectCategories()
    .withProductId({
    productId: product.id,
    })
    .get()
    .execute()
    .then((x) => {
    /*...*/
    })

    apiRoot
    .withProjectKey({ projectKey })
    .imageSearch()
    .post({
    queryArgs: {
    limit: 20,
    },
    body: image,
    headers: {
    'Content-Type': 'image/jpeg',
    },
    })
    .execute()
    .then((x) => {
    /*...*/
    })

    // -----------------------------------------------------------------------
    // The ts-client also has support for the old syntax
    import {
    createClient,
    createHttpClient,
    createAuthForClientCredentialsFlow,
    } from '@commercetools/ts-client'
    import { createApiBuilderFromCtpClient } from '@commercetools/history-sdk'

    const projectKey = 'some_project_key'

    const authMiddleware = createAuthForClientCredentialsFlow({
    host: 'https://auth.europe-west1.gcp.commercetools.com',
    projectKey,
    credentials: {
    clientId: 'some_id',
    clientSecret: 'some_secret',
    },
    fetch,
    })

    const httpMiddleware = createHttpClient({
    host: 'https://history.europe-west1.gcp.commercetools.com',
    fetch,
    })

    const ctpClient = createClient({
    middlewares: [authMiddleware, httpMiddleware],
    })

    const apiRoot = createApiBuilderFromCtpClient(ctpClient)

    apiRoot
    .withProjectKey({ projectKey })
    .recommendations()
    .projectCategories()
    .withProductId({
    productId: product.id,
    })
    .get()
    .execute()
    .then((x) => {
    /*...*/
    })

    apiRoot
    .withProjectKey({ projectKey })
    .imageSearch()
    .post({
    queryArgs: {
    limit: 20,
    },
    body: image,
    headers: {
    'Content-Type': 'image/jpeg',
    },
    })
    .execute()
    .then((x) => {
    /*...*/
    })

    Enumerations

    AssociateRoleDeprecatedValues
    AssociateRoleInheritanceModeValues
    AttributeConstraintEnumValues
    AttributeLevelEnumValues
    AuthenticationModeValues
    BusinessUnitApprovalRuleModeValues
    BusinessUnitAssociateModeValues
    BusinessUnitStatusValues
    BusinessUnitStoreModeValues
    BusinessUnitTypeValues
    ChangeHistoryResourceTypeValues
    ChannelRoleEnumValues
    CustomLineItemPriceModeValues
    DateStringFilterValues
    DiscountCodeStateValues
    InventoryModeValues
    LineItemModeValues
    LineItemPriceModeValues
    MoneyTypeValues
    OrderStateValues
    PaymentStateValues
    PermissionValues
    PlatformInitiatedChangeValues
    PriceSelectionModeValues
    ProductPriceModeEnumValues
    ProductVariantSelectionTypeEnumValues
    QuoteRequestStateValues
    QuoteStateValues
    ReferenceTypeIdValues
    ResourceTypeIdValues
    ReturnPaymentStateValues
    ReturnShipmentStateValues
    RoundingModeValues
    SelectionModeValues
    ShipmentStateValues
    ShippingMethodStateValues
    ShippingRateTierTypeValues
    SourceValues
    StackingModeValues
    StagedQuoteStateValues
    StateRoleEnumValues
    StateTypeEnumValues
    TaxCalculationModeValues
    TaxModeValues
    TextInputHintValues
    TransactionStateValues
    TransactionTypeValues
    TypeTextInputHintValues
    UpdateTypeValues

    Classes

    ApiRequest
    ApiRoot
    ByProjectKeyByResourceTypeByIDRequestBuilder
    ByProjectKeyByResourceTypeRequestBuilder
    ByProjectKeyGraphqlRequestBuilder
    ByProjectKeyRequestBuilder

    Interfaces

    AddAddressChange
    AddAssetChange
    AddAssociateChange
    AddAttributeDefinitionChange
    AddBillingAddressIdChange
    AddChannelRolesChange
    AddCustomLineItemChange
    AddDeliveryChange
    AddDiscountCodeChange
    AddEnumValueChange
    AddExternalImageChange
    AddFieldDefinitionChange
    AddInheritedAssociateChange
    AddInterfaceInteractionChange
    AddItemShippingAddressesChange
    AddLocalizedEnumValueChange
    AddLocationChange
    AddOrderLineItemChange
    AddParcelToDeliveryChange
    AddPaymentChange
    AddPlainEnumValueChange
    AddPriceChange
    AddProductChange
    AddProductSelectionChange
    AddPropertyChange
    Address
    AddReturnInfoChange
    AddShippingAddressIdChange
    AddShippingChange
    AddShoppingListLineItemChange
    AddStateRolesChange
    AddTaxRateChange
    AddTextLineItemChange
    AddToCategoryChange
    AddTransactionChange
    AddVariantChange
    Asset
    AssetChangeValue
    AssetDimensions
    AssetSource
    Associate
    AssociateRoleAssignment
    AssociateRoleKeyReference
    AssociateRoleLabel
    Attribute
    AttributeDefinition
    AttributeLocalizedEnumValue
    AttributePlainEnumValue
    AttributeType
    AttributeValue
    BaseAddress
    BestDeal
    BusinessUnitKeyReference
    BusinessUnitLabel
    BusinessUnitResourceIdentifier
    CartDiscountReference
    CartDiscountTarget
    CartDiscountValue
    CategoryOrderHints
    CategoryReference
    CentPrecisionMoney
    ChangeAddressChange
    ChangeAmountAuthorizedChange
    ChangeAmountPlannedChange
    ChangeApprovalRuleModeChange
    ChangeAssetNameChange
    ChangeAssetOrderChange
    ChangeAssociateChange
    ChangeAssociateModeChange
    ChangeAttributeConstraintChange
    ChangeAttributeOrderByNameChange
    ChangeBuyerAssignableChange
    ChangeCartDiscountsChange
    ChangeCartPredicateChange
    ChangeCustomerChange
    ChangeCustomLineItemPriceRoundingModeChange
    ChangeCustomLineItemQuantityChange
    ChangeDescriptionChange
    ChangeDiscountTypeCombinationChange
    ChangeEmailChange
    ChangeEnumValueLabelChange
    ChangeEnumValueOrderChange
    ChangeFieldDefinitionOrderChange
    ChangeGroupsChange
    ChangeIncludedInStatisticsChange
    ChangeInheritedAssociateChange
    ChangeInitialChange
    ChangeInputHintChange
    ChangeIsActiveChange
    ChangeIsSearchableChange
    ChangeKeyChange
    ChangeLabelChange
    ChangeLastVariantIdChange
    ChangeLineItemNameChange
    ChangeLineItemPriceRoundingModeChange
    ChangeLineItemPublishedChange
    ChangeLineItemQuantityChange
    ChangeLocalizedDescriptionChange
    ChangeLocalizedEnumValueLabelChange
    ChangeLocalizedEnumValueOrderChange
    ChangeLocalizedNameChange
    ChangeMasterVariantChange
    ChangeNameChange
    ChangeOrderHintChange
    ChangeOrderStateChange
    ChangeParentChange
    ChangeParentUnitChange
    ChangePaymentStateChange
    ChangePlainEnumValueLabelChange
    ChangePlainEnumValueOrderChange
    ChangePredicateChange
    ChangePriceChange
    ChangePriceRoundingModeChange
    ChangeProductSelectionActiveChange
    ChangeQuantityChange
    ChangeQuoteRequestStateChange
    ChangeQuoteStateChange
    ChangeRequiresDiscountCodeChange
    ChangeReviewRatingStatisticsChange
    ChangeShipmentStateChange
    ChangeShoppingListLineItemQuantityChange
    ChangeShoppingListLineItemsOrderChange
    ChangeSlugChange
    ChangeSortOrderChange
    ChangeStackingModeChange
    ChangeStagedQuoteStateChange
    ChangeStateTypeChange
    ChangeStatusChange
    ChangeTargetChange
    ChangeTargetCustomLineItemsChangeValue
    ChangeTargetLineItemsChangeValue
    ChangeTargetMultiBuyCustomLineItemsChangeValue
    ChangeTargetMultiBuyLineItemsChangeValue
    ChangeTargetPatternChangeValue
    ChangeTargetShippingChangeValue
    ChangeTaxCalculationModeChange
    ChangeTaxModeChange
    ChangeTaxRoundingModeChange
    ChangeTextLineItemNameChange
    ChangeTextLineItemQuantityChange
    ChangeTextLineItemsOrderChange
    ChangeTopLevelUnitChange
    ChangeTransactionInteractionIdChange
    ChangeTransactionStateChange
    ChangeTransactionTimestampChange
    ChangeValueAbsoluteChangeValue
    ChangeValueChange
    ChangeValueExternalChangeValue
    ChangeValueGiftLineItemChangeValue
    ChangeValueRelativeChangeValue
    ChannelReference
    ClientLogging
    ClientRequest
    CustomerGroupAssignment
    CustomerGroupReference
    CustomerLabel
    CustomerReference
    CustomFieldEnumValue
    CustomFieldExpandedValue
    CustomFieldLocalizedEnumValue
    CustomFields
    CustomLineItem
    CustomLineItemRecurrenceInfo
    CustomObjectLabel
    CustomShippingMethodChangeValue
    Delivery
    DeliveryChangeValue
    DeliveryItem
    DirectDiscount
    DiscountCodeInfo
    DiscountCodeReference
    DiscountedLineItemPortion
    DiscountedLineItemPrice
    DiscountedLineItemPriceForQuantity
    DiscountedPrice
    DiscountedTotalPricePortion
    DiscountOnTotalPrice
    EnumValue
    ErrorObject
    ErrorResponse
    ExcludeProductChange
    FieldContainer
    FieldDefinition
    FieldDefinitionOrderValue
    FieldType
    GeoLocation
    GraphQLError
    GraphQLErrorLocation
    GraphQLRequest
    GraphQLResponse
    GraphQLTooManyRequestsError
    GraphQLVariablesMap
    IChange
    IChangeTargetChangeValue
    IChangeValueChangeValue
    IDiscountTypeCombination
    IGeoJson
    IGraphQLErrorObject
    IKeyReference
    ILabel
    Image
    ImageDimensions
    InheritedAssociate
    InheritedAssociateRoleAssignment
    InventoryQuantityValue
    IReference
    ItemShippingDetails
    ItemShippingTarget
    ItemState
    ITypedMoney
    LineItem
    LineItemRecurrenceInfo
    LocalizedEnumValue
    LocalizedLabel
    LocalizedString
    Location
    MethodTaxedPrice
    MethodTaxRate
    ModifiedBy
    Money
    MoveImageToPositionChange
    OrderLabel
    Parcel
    ParcelChangeValue
    ParcelMeasurements
    PatternComponent
    PaymentInfo
    PaymentLabel
    PaymentReference
    Price
    PriceTier
    ProductDiscountReference
    ProductDiscountValue
    ProductLabel
    ProductReference
    ProductSelectionReference
    ProductSelectionSetting
    ProductTypeReference
    ProductVariant
    ProductVariantAvailability
    ProductVariantChannelAvailability
    ProductVariantChannelAvailabilityMap
    ProductVariantExclusion
    ProductVariantSelection
    PublishChange
    QuoteLabel
    QuoteRequestLabel
    Record
    RecordPagedQueryResponse
    RecurrencePolicyReference
    RemoveAddressChange
    RemoveAssetChange
    RemoveAssociateChange
    RemoveAttributeDefinitionChange
    RemoveBillingAddressIdChange
    RemoveChannelRolesChange
    RemoveCustomLineItemChange
    RemoveDeliveryItemsChange
    RemoveDiscountCodeChange
    RemoveEnumValuesChange
    RemoveFieldDefinitionChange
    RemoveFromCategoryChange
    RemoveImageChange
    RemoveInheritedAssociateChange
    RemoveItemShippingAddressesChange
    RemoveLocalizedEnumValuesChange
    RemoveLocationChange
    RemoveOrderLineItemChange
    RemoveParcelFromDeliveryChange
    RemovePaymentChange
    RemovePriceChange
    RemoveProductChange
    RemoveProductSelectionChange
    RemovePropertyChange
    RemoveShippingAddressIdChange
    RemoveShippingChange
    RemoveShoppingListLineItemChange
    RemoveStateRolesChange
    RemoveTaxRateChange
    RemoveTextLineItemChange
    RemoveVariantChange
    ReplaceTaxRateChange
    RequestQuoteRenegotiationChange
    Reservation
    ResourceIdentifier
    ReturnInfo
    ReturnItem
    RevertStagedChangesChange
    RevertStagedVariantChangesChange
    ReviewLabel
    ReviewRatingStatistics
    ScopedPrice
    SearchKeyword
    SearchKeywords
    SetAddressChange
    SetAddressCustomFieldChange
    SetAddressCustomTypeChange
    SetAncestorsChange
    SetAnonymousIdChange
    SetApplicationVersionChange
    SetAssetCustomFieldChange
    SetAssetCustomTypeChange
    SetAssetDescriptionChange
    SetAssetKeyChange
    SetAssetSourcesChange
    SetAssetTagsChange
    SetAssociatesChange
    SetAttributeChange
    SetAuthenticationModeChange
    SetAuthorNameChange
    SetBillingAddressChange
    SetBillingAddressCustomFieldChange
    SetBillingAddressCustomTypeChange
    SetBusinessUnitChange
    SetCartClassificationShippingRateInputValue
    SetCartPredicateChange
    SetCartScoreShippingRateInputValue
    SetCategoryOrderHintChange
    SetChannelRolesChange
    SetCompanyNameChange
    SetContactEmailChange
    SetCountriesChange
    SetCountryChange
    SetCustomerChange
    SetCustomerEmailChange
    SetCustomerGroupAssignmentsChange
    SetCustomerGroupChange
    SetCustomerIdChange
    SetCustomerNumberChange
    SetCustomFieldChange
    SetCustomLineItemCustomFieldChange
    SetCustomLineItemCustomTypeChange
    SetCustomLineItemDiscountedPriceChange
    SetCustomLineItemDiscountedPricePerQuantityChange
    SetCustomLineItemMoneyChange
    SetCustomLineItemShippingDetailsChange
    SetCustomLineItemTaxAmountChange
    SetCustomLineItemTaxCategoryChange
    SetCustomLineItemTaxedPriceChange
    SetCustomLineItemTaxRateChange
    SetCustomLineItemTotalPriceChange
    SetCustomShippingMethodChange
    SetCustomTypeChange
    SetDateOfBirthChange
    SetDefaultBillingAddressChange
    SetDefaultShippingAddressChange
    SetDeleteDaysAfterLastModificationChange
    SetDeliveryAddressChange
    SetDeliveryAddressCustomFieldChange
    SetDeliveryAddressCustomTypeChange
    SetDeliveryCustomFieldChange
    SetDeliveryCustomTypeChange
    SetDeliveryItemsChange
    SetDescriptionChange
    SetDirectDiscountsChange
    SetDiscountedPriceChange
    SetDiscountOnTotalPriceChange
    SetDistributionChannelsChange
    SetExpectedDeliveryChange
    SetExternalIdChange
    SetFirstNameChange
    SetGeoLocationChange
    SetImageLabelChange
    SetInheritedAssociatesChange
    SetInheritedStoresChange
    SetInputTipChange
    SetInterfaceIdChange
    SetIsValidChange
    SetItemShippingAddressCustomFieldChange
    SetItemShippingAddressCustomTypeChange
    SetKeyChange
    SetLanguagesChange
    SetLastNameChange
    SetLineItemDeactivatedAtChange
    SetLineItemDiscountedPriceChange
    SetLineItemDiscountedPricePerQuantityChange
    SetLineItemDistributionChannelChange
    SetLineItemPriceChange
    SetLineItemProductKeyChange
    SetLineItemProductSlugChange
    SetLineItemShippingDetailsChange
    SetLineItemTaxAmountChange
    SetLineItemTaxedPriceChange
    SetLineItemTaxRateChange
    SetLineItemTotalPriceChange
    SetLocaleChange
    SetLocalizedDescriptionChange
    SetLocalizedNameChange
    SetMaxApplicationsChange
    SetMaxApplicationsPerCustomerChange
    SetMaxCartQuantityChange
    SetMetaDescriptionChange
    SetMetaKeywordsChange
    SetMetaTitleChange
    SetMethodInfoInterfaceChange
    SetMethodInfoMethodChange
    SetMethodInfoNameChange
    SetMiddleNameChange
    SetMinCartQuantityChange
    SetNameChange
    SetOrderLineItemCustomFieldChange
    SetOrderLineItemCustomTypeChange
    SetOrderNumberChange
    SetOrderTaxedPriceChange
    SetOrderTotalPriceChange
    SetOrderTotalTaxChange
    SetParcelCustomFieldChange
    SetParcelCustomTypeChange
    SetParcelItemsChange
    SetParcelMeasurementsChange
    SetParcelTrackingDataChange
    SetPasswordChange
    SetPermissionsChange
    SetPriceKeyChange
    SetPriceModeChange
    SetPricesChange
    SetProductAttributeChange
    SetProductCountChange
    SetProductPriceCustomFieldChange
    SetProductPriceCustomTypeChange
    SetProductSelectionsChange
    SetProductVariantKeyChange
    SetPropertyChange
    SetPurchaseOrderNumberChange
    SetRatingChange
    SetReferencesChange
    SetReservationsChange
    SetRestockableInDaysChange
    SetReturnInfoChange
    SetReturnItemCustomLineItemCustomFieldChange
    SetReturnItemCustomLineItemCustomTypeChange
    SetReturnItemLineItemCustomFieldChange
    SetReturnItemLineItemCustomTypeChange
    SetReturnPaymentStateChange
    SetReturnShipmentStateChange
    SetSalutationChange
    SetSearchKeywordsChange
    SetSellerCommentChange
    SetShippingAddressChange
    SetShippingAddressCustomFieldChange
    SetShippingAddressCustomTypeChange
    SetShippingCustomFieldChange
    SetShippingCustomTypeChange
    SetShippingInfoDiscountedPriceChange
    SetShippingInfoPriceChange
    SetShippingInfoTaxedPriceChange
    SetShippingMethodChange
    SetShippingMethodTaxAmountChange
    SetShippingMethodTaxCategoryChange
    SetShippingMethodTaxRateChange
    SetShippingRateChange
    SetShippingRateInputChange
    SetShoppingListLineItemCustomFieldChange
    SetShoppingListLineItemCustomTypeChange
    SetSkuChange
    SetSlugChange
    SetStateRolesChange
    SetStatusInterfaceCodeChange
    SetStatusInterfaceTextChange
    SetStoreChange
    SetStoreModeChange
    SetStoresChange
    SetSupplyChannelChange
    SetSupplyChannelsChange
    SetTargetChange
    SetTaxCategoryChange
    SetTaxedShippingPriceChange
    SetTextChange
    SetTextLineItemCustomFieldChange
    SetTextLineItemCustomTypeChange
    SetTextLineItemDescriptionChange
    SetTitleChange
    SetTransactionCustomFieldChange
    SetTransactionCustomTypeChange
    SetTransitionsChange
    SetUnitTypeChange
    SetValidFromAndUntilChange
    SetValidFromChange
    SetValidToChange
    SetValidUntilChange
    SetValueChange
    SetVariantAvailabilityChange
    SetVariantExclusionChange
    SetVariantSelectionChange
    SetVatIdChange
    Shipping
    ShippingInfo
    ShippingMethodAddShippingRateChange
    ShippingMethodAddZoneChange
    ShippingMethodChangeActiveChange
    ShippingMethodChangeIsDefaultChange
    ShippingMethodChangeNameChange
    ShippingMethodChangeTaxCategoryChange
    ShippingMethodChangeValue
    ShippingMethodLabel
    ShippingMethodReference
    ShippingMethodRemoveShippingRateChange
    ShippingMethodRemoveZoneChange
    ShippingMethodSetCustomFieldChange
    ShippingMethodSetCustomTypeChange
    ShippingMethodSetKeyChange
    ShippingMethodSetLocalizedDescriptionChange
    ShippingMethodSetLocalizedNameChange
    ShippingMethodSetPredicateChange
    ShippingMethodTaxAmountChangeValue
    ShippingRate
    ShippingRateInput
    ShippingRatePriceTier
    ShoppingListLineItem
    ShoppingListLineItemValue
    Stacking
    StagedQuoteLabel
    StandalonePriceChangeActiveChange
    StandalonePriceChangeValueChange
    StandalonePriceLabel
    StandalonePriceSetCustomFieldChange
    StandalonePriceSetCustomTypeChange
    StandalonePriceSetDiscountedPriceChange
    StandalonePriceSetKeyChange
    StandalonePriceSetPriceTiersChange
    StandalonePriceSetValidFromAndUntilChange
    StandalonePriceSetValidFromChange
    StandalonePriceSetValidUntilChange
    StateReference
    StoreCountry
    StoreKeyReference
    StringLabel
    SubRate
    SuggestTokenizer
    SyncInfo
    TaxCategoryReference
    TaxedItemPrice
    TaxedPrice
    TaxPortion
    TaxRate
    TextLineItem
    TextLineItemValue
    TooManyRequestsError
    TrackingData
    Transaction
    TransactionChangeValue
    TransitionCustomLineItemStateChange
    TransitionLineItemStateChange
    TransitionStateChange
    TypeReference
    UnknownChange
    UnpublishChange
    UpdateItemShippingAddressChange
    UpdateSyncInfoChange
    ValidFromAndUntilValue
    Variant
    VerifyEmailChange
    ZoneResourceIdentifier

    Type Aliases

    _BaseAddress
    _ErrorObject
    _Money
    _ResourceIdentifier
    AssociateRoleDeprecated
    AssociateRoleInheritanceMode
    AttributeConstraintEnum
    AttributeLevelEnum
    AuthenticationMode
    BusinessUnitApprovalRuleMode
    BusinessUnitAssociateMode
    BusinessUnitStatus
    BusinessUnitStoreMode
    BusinessUnitType
    Change
    ChangeHistoryResourceType
    ChangeTargetChangeValue
    ChangeValueChangeValue
    ChannelRoleEnum
    ClientResponse
    CustomLineItemPriceMode
    DateStringFilter
    DiscountCodeState
    DiscountTypeCombination
    executeRequest
    GeoJson
    GraphQLErrorObject
    HttpErrorType
    InventoryMode
    JsonObject
    KeyReference
    Keys
    Label
    LineItemMode
    LineItemPriceMode
    Locale
    MethodType
    Middleware
    MoneyType
    OrderState
    PaymentState
    Permission
    PlatformInitiatedChange
    PriceSelectionMode
    ProductPriceModeEnum
    ProductVariantSelectionTypeEnum
    QueryParam
    QuoteRequestState
    QuoteState
    Reference
    ReferenceTypeId
    ResourceTypeId
    ReturnPaymentState
    ReturnShipmentState
    RoundingMode
    SelectionMode
    ShipmentState
    ShippingMethodState
    ShippingRateTierType
    Source
    StackingMode
    StagedQuoteState
    StateRoleEnum
    StateTypeEnum
    TaxCalculationMode
    TaxMode
    TextInputHint
    TransactionState
    TransactionType
    TypedMoney
    TypeTextInputHint
    UpdateType
    VariableMap

    Functions

    buildRelativeUri
    createApiBuilderFromCtpClient
    createExecutorFromMiddlewares