├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .env.template ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github-labelsrc.json ├── .github ├── pull_request_template.md ├── renovate.json └── workflows │ ├── api-specs-pr.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .nvmrc ├── .percy.js ├── .prettierignore ├── .prettierrc ├── .vercelignore ├── .vscode └── spellright.dict ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-constraints.cjs │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-postinstall.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.8.5.cjs ├── .yarnrc.yml ├── ARCHIVED_CHANGELOG.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.mdx ├── CONTRIBUTING.mdx ├── LICENSE ├── README.md ├── algolia-crawler.js ├── api-specs ├── api │ ├── api.raml │ ├── examples │ │ ├── ApprovalFlow │ │ │ ├── ApprovalFlowApproveAction.json │ │ │ ├── ApprovalFlowRejectAction.json │ │ │ ├── ApprovalFlowSetCustomFieldAction.json │ │ │ └── ApprovalFlowSetCustomTypeAction.json │ │ ├── ApprovalRule │ │ │ ├── ApprovalRuleSetApproversAction.json │ │ │ ├── ApprovalRuleSetDescriptionAction.json │ │ │ ├── ApprovalRuleSetKeyAction.json │ │ │ ├── ApprovalRuleSetNameAction.json │ │ │ ├── ApprovalRuleSetPredicateAction.json │ │ │ ├── ApprovalRuleSetRequestersAction.json │ │ │ └── ApprovalRuleSetStatusAction.json │ │ ├── AssociateRole │ │ │ ├── AssociateRoleAddPermissionAction.json │ │ │ ├── AssociateRoleChangeBuyerAssignableAction.json │ │ │ ├── AssociateRoleRemovePermissionAction.json │ │ │ ├── AssociateRoleSetCustomFieldAction.json │ │ │ ├── AssociateRoleSetCustomTypeAction.json │ │ │ ├── AssociateRoleSetNameAction.json │ │ │ └── AssociateRoleSetPermissionsAction.json │ │ ├── AttributeGroup │ │ │ ├── AttributeGroup.json │ │ │ ├── AttributeGroupAddAttributeAction.json │ │ │ ├── AttributeGroupChangeNameAction.json │ │ │ ├── AttributeGroupDraft.json │ │ │ ├── AttributeGroupRemoveAttributeAction.json │ │ │ ├── AttributeGroupSetAttributesAction.json │ │ │ ├── AttributeGroupSetDescriptionAction.json │ │ │ ├── AttributeGroupSetKeyAction.json │ │ │ ├── AttributeGroupUpdate.json │ │ │ └── AttributeGroups.json │ │ ├── BusinessUnit │ │ │ ├── BusinessUnitAddAddressAction.json │ │ │ ├── BusinessUnitAddAssociateAction.json │ │ │ ├── BusinessUnitAddBillingAddressIdAction.json │ │ │ ├── BusinessUnitAddShippingAddressIdAction.json │ │ │ ├── BusinessUnitAddStoreAction.json │ │ │ ├── BusinessUnitChangeAddressAction.json │ │ │ ├── BusinessUnitChangeApprovalRuleModeAction.json │ │ │ ├── BusinessUnitChangeAssociateAction.json │ │ │ ├── BusinessUnitChangeNameAction.json │ │ │ ├── BusinessUnitChangeParentUnitAction.json │ │ │ ├── BusinessUnitChangeStatusAction.json │ │ │ ├── BusinessUnitRemoveAddressAction.json │ │ │ ├── BusinessUnitRemoveAssociateAction.json │ │ │ ├── BusinessUnitRemoveBillingAddressIdAction.json │ │ │ ├── BusinessUnitRemoveShippingAddressIdAction.json │ │ │ ├── BusinessUnitRemoveStoreAction.json │ │ │ ├── BusinessUnitSetAddressCustomFieldAction.json │ │ │ ├── BusinessUnitSetAddressCustomTypeAction.json │ │ │ ├── BusinessUnitSetAssociatesAction.json │ │ │ ├── BusinessUnitSetContactEmailAction.json │ │ │ ├── BusinessUnitSetCustomFieldAction.json │ │ │ ├── BusinessUnitSetCustomTypeAction.json │ │ │ ├── BusinessUnitSetDefaultBillingAddressAction.json │ │ │ ├── BusinessUnitSetDefaultShippingAddressAction.json │ │ │ ├── BusinessUnitSetStoreModeAction.json │ │ │ └── BusinessUnitSetStoresAction.json │ │ ├── Cart │ │ │ ├── CartAddCustomLineItemAction.json │ │ │ ├── CartAddCustomShippingMethodAction.json │ │ │ ├── CartAddDiscountCodeAction.json │ │ │ ├── CartAddItemShippingAddressAction.json │ │ │ ├── CartAddLineItemAction.json │ │ │ ├── CartAddPaymentAction.json │ │ │ ├── CartAddShippingMethodAction.json │ │ │ ├── CartAddShoppingListAction.json │ │ │ ├── CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction.json │ │ │ ├── CartApplyDeltaToLineItemShippingDetailsTargetsAction.json │ │ │ ├── CartChangeCustomLineItemCustomTypeAction.json │ │ │ ├── CartChangeCustomLineItemMoneyAction.json │ │ │ ├── CartChangeCustomLineItemPriceModeAction.json │ │ │ ├── CartChangeCustomLineItemQuantityAction.json │ │ │ ├── CartChangeCustomLineItemTaxAmountAction.json │ │ │ ├── CartChangeCustomLineItemTaxRateAction.json │ │ │ ├── CartChangeLineItemQuantityAction.json │ │ │ ├── CartChangeLineItemsOrderAction.json │ │ │ ├── CartChangeTaxCalculationModeAction.json │ │ │ ├── CartChangeTaxModeAction.json │ │ │ ├── CartChangeTaxRoundingModeAction.json │ │ │ ├── CartCreateCart.json │ │ │ ├── CartDirectDiscountDraft.json │ │ │ ├── CartFreezeCartAction.json │ │ │ ├── CartRecalculateAction.json │ │ │ ├── CartRemoveCustomLineItemAction.json │ │ │ ├── CartRemoveCustomLineItemQuantityAction.json │ │ │ ├── CartRemoveDiscountCodeAction.json │ │ │ ├── CartRemoveItemShippingAddressAction.json │ │ │ ├── CartRemoveLineItemAction.json │ │ │ ├── CartRemovePaymentAction.json │ │ │ ├── CartRemoveShippingMethodAction.json │ │ │ ├── CartSetAnonymousIdAction.json │ │ │ ├── CartSetBillingAddressAction.json │ │ │ ├── CartSetBillingAddressCustomFieldAction.json │ │ │ ├── CartSetBillingAddressCustomTypeAction.json │ │ │ ├── CartSetBusinessUnitAction.json │ │ │ ├── CartSetCartTotalTaxAction.json │ │ │ ├── CartSetCountryAction.json │ │ │ ├── CartSetCustomFieldAction.json │ │ │ ├── CartSetCustomLineItemCustomFieldAction.json │ │ │ ├── CartSetCustomLineItemCustomTypeAction.json │ │ │ ├── CartSetCustomLineItemShippingDetailsAction.json │ │ │ ├── CartSetCustomLineItemTaxAmountAction.json │ │ │ ├── CartSetCustomLineItemTaxRateAction.json │ │ │ ├── CartSetCustomShippingMethodAction.json │ │ │ ├── CartSetCustomTypeAction.json │ │ │ ├── CartSetCustomerEmailAction.json │ │ │ ├── CartSetCustomerGroupAction.json │ │ │ ├── CartSetCustomerIdAction.json │ │ │ ├── CartSetDeleteDaysAfterLastModificationAction.json │ │ │ ├── CartSetDirectDiscountsAction.json │ │ │ ├── CartSetItemShippingAddressCustomFieldAction.json │ │ │ ├── CartSetItemShippingAddressCustomTypeAction.json │ │ │ ├── CartSetKeyAction.json │ │ │ ├── CartSetLineItemCustomFieldAction.json │ │ │ ├── CartSetLineItemCustomTypeAction.json │ │ │ ├── CartSetLineItemDistributionChannelAction.json │ │ │ ├── CartSetLineItemInventoryModeAction.json │ │ │ ├── CartSetLineItemPriceAction.json │ │ │ ├── CartSetLineItemShippingDetailsAction.json │ │ │ ├── CartSetLineItemSupplyChannelAction.json │ │ │ ├── CartSetLineItemTaxAmountAction.json │ │ │ ├── CartSetLineItemTaxRateAction.json │ │ │ ├── CartSetLineItemTotalPriceAction.json │ │ │ ├── CartSetLocaleAction.json │ │ │ ├── CartSetShippingAddressAction.json │ │ │ ├── CartSetShippingAddressCustomFieldAction.json │ │ │ ├── CartSetShippingAddressCustomTypeAction.json │ │ │ ├── CartSetShippingCustomFieldAction.json │ │ │ ├── CartSetShippingCustomTypeAction.json │ │ │ ├── CartSetShippingMethodAction.json │ │ │ ├── CartSetShippingMethodTaxAmountAction.json │ │ │ ├── CartSetShippingMethodTaxRateAction.json │ │ │ ├── CartSetShippingRateInputAction.json │ │ │ ├── CartUnfreezeCartAction.json │ │ │ ├── CartUpdateItemShippingAddressAction.json │ │ │ └── MyCartAddLineItemAction.json │ │ ├── CartDiscount │ │ │ ├── CartDiscountAddStoreAction.json │ │ │ ├── CartDiscountChangeCartPredicateAction.json │ │ │ ├── CartDiscountChangeIsActiveAction.json │ │ │ ├── CartDiscountChangeNameAction.json │ │ │ ├── CartDiscountChangeRequiresDiscountCodeAction.json │ │ │ ├── CartDiscountChangeSortOrderAction.json │ │ │ ├── CartDiscountChangeStackingModeAction.json │ │ │ ├── CartDiscountChangeTargetAction.json │ │ │ ├── CartDiscountChangeValueAction.json │ │ │ ├── CartDiscountRemoveStoreAction.json │ │ │ ├── CartDiscountSetCustomFieldAction.json │ │ │ ├── CartDiscountSetCustomTypeAction.json │ │ │ ├── CartDiscountSetDescriptionAction.json │ │ │ ├── CartDiscountSetKeyAction.json │ │ │ ├── CartDiscountSetStoresAction.json │ │ │ ├── CartDiscountSetValidFromAction.json │ │ │ ├── CartDiscountSetValidFromAndUntilAction.json │ │ │ └── CartDiscountSetValidUntilAction.json │ │ ├── Category │ │ │ ├── CategoryAddAssetAction.json │ │ │ ├── CategoryChangeAssetNameAction.json │ │ │ ├── CategoryChangeAssetOrderAction.json │ │ │ ├── CategoryChangeNameAction.json │ │ │ ├── CategoryChangeOrderHintAction.json │ │ │ ├── CategoryChangeParentAction.json │ │ │ ├── CategoryChangeSlugAction.json │ │ │ ├── CategoryRemoveAssetAction.json │ │ │ ├── CategorySetAssetCustomFieldAction.json │ │ │ ├── CategorySetAssetCustomTypeAction.json │ │ │ ├── CategorySetAssetDescriptionAction.json │ │ │ ├── CategorySetAssetKeyAction.json │ │ │ ├── CategorySetAssetSourcesAction.json │ │ │ ├── CategorySetAssetTagAction.json │ │ │ ├── CategorySetAssetTagsAction.json │ │ │ ├── CategorySetCustomFieldAction.json │ │ │ ├── CategorySetCustomTypeAction.json │ │ │ ├── CategorySetDescriptionAction.json │ │ │ ├── CategorySetExternalIdAction.json │ │ │ ├── CategorySetKeyAction.json │ │ │ ├── CategorySetMetaDescriptionAction.json │ │ │ ├── CategorySetMetaKeywordsAction.json │ │ │ ├── CategorySetMetaTitleAction.json │ │ │ └── CategroySetExternalIDAction.json │ │ ├── Channel │ │ │ ├── ChannelAddRolesAction.json │ │ │ ├── ChannelChangeDescriptionAction.json │ │ │ ├── ChannelChangeKeyAction.json │ │ │ ├── ChannelChangeNameAction.json │ │ │ ├── ChannelRemoveRolesAction.json │ │ │ ├── ChannelSetAddressAction.json │ │ │ ├── ChannelSetAddressCustomFieldAction.json │ │ │ ├── ChannelSetAddressCustomTypeAction.json │ │ │ ├── ChannelSetCustomFieldAction.json │ │ │ ├── ChannelSetCustomTypeAction.json │ │ │ ├── ChannelSetGeoLocationAction.json │ │ │ └── ChannelSetRolesAction.json │ │ ├── Common │ │ │ ├── AddressDraft.json │ │ │ ├── CentPrecisionMoney.json │ │ │ ├── CentPrecisionMoneyDraft.json │ │ │ ├── HighPrecisionMoney.json │ │ │ ├── HighPrecisionMoneyDraft.json │ │ │ ├── LocalizedString.json │ │ │ ├── Money.json │ │ │ └── Reference.json │ │ ├── CustomObjects │ │ │ ├── CustomObject.json │ │ │ └── CustomObjectDraft.json │ │ ├── Customer │ │ │ ├── CustomerAddAddressAction.json │ │ │ ├── CustomerAddBillingAddressIdAction.json │ │ │ ├── CustomerAddShippingAddressIdAction.json │ │ │ ├── CustomerAddStoreAction.json │ │ │ ├── CustomerChangeAddressAction.json │ │ │ ├── CustomerChangeCustomerPasswordAction.json │ │ │ ├── CustomerChangeEmailAction.json │ │ │ ├── CustomerChangePassword.json │ │ │ ├── CustomerCreateEmailToken.json │ │ │ ├── CustomerCreatePasswordResetToken.json │ │ │ ├── CustomerEmailVerify.json │ │ │ ├── CustomerRemoveAddressAction.json │ │ │ ├── CustomerRemoveBillingAddressIdAction.json │ │ │ ├── CustomerRemoveShippingAddressIdAction.json │ │ │ ├── CustomerRemoveStoreAction.json │ │ │ ├── CustomerResetPassword.json │ │ │ ├── CustomerSetAddressCustomFieldAction.json │ │ │ ├── CustomerSetAddressCustomTypeAction.json │ │ │ ├── CustomerSetAuthenticationModeAction.json │ │ │ ├── CustomerSetCompanyNameAction.json │ │ │ ├── CustomerSetCustomFieldAction.json │ │ │ ├── CustomerSetCustomTypeAction.json │ │ │ ├── CustomerSetCustomerGroupAction.json │ │ │ ├── CustomerSetCustomerNumberAction.json │ │ │ ├── CustomerSetDateOfBirthAction.json │ │ │ ├── CustomerSetDefaultBillingAddressAction.json │ │ │ ├── CustomerSetDefaultShippingAddressAction.json │ │ │ ├── CustomerSetExternalIdAction.json │ │ │ ├── CustomerSetFirstNameAction.json │ │ │ ├── CustomerSetKeyAction.json │ │ │ ├── CustomerSetLastNameAction.json │ │ │ ├── CustomerSetLocaleAction.json │ │ │ ├── CustomerSetMiddleNameAction.json │ │ │ ├── CustomerSetSalutationAction.json │ │ │ ├── CustomerSetShippingAddressIdAction.json │ │ │ ├── CustomerSetStoresAction.json │ │ │ ├── CustomerSetTitleAction.json │ │ │ ├── CustomerSetVatIdAction.json │ │ │ ├── CustomerSignIn.json │ │ │ ├── CustomerToken.json │ │ │ └── MyCustomerChangePassword.json │ │ ├── CustomerGroup │ │ │ ├── CustomerGroupChangeNameAction.json │ │ │ ├── CustomerGroupSetCustomFieldAction.json │ │ │ ├── CustomerGroupSetCustomTypeAction.json │ │ │ └── CustomerGroupSetKeyAction.json │ │ ├── CustomerSearch │ │ │ ├── CustomerPagedSearchResponse.json │ │ │ ├── CustomerSearchIndexingStatusResponse.json │ │ │ └── CustomerSearchRequest.json │ │ ├── DiscountCode │ │ │ ├── DiscountCodeChangeCartDiscountsAction.json │ │ │ ├── DiscountCodeChangeGroupsAction.json │ │ │ ├── DiscountCodeChangeIsActiveAction.json │ │ │ ├── DiscountCodeSetCartPredicateAction.json │ │ │ ├── DiscountCodeSetCustomFieldAction.json │ │ │ ├── DiscountCodeSetCustomTypeAction.json │ │ │ ├── DiscountCodeSetDescriptionAction.json │ │ │ ├── DiscountCodeSetKeyAction.json │ │ │ ├── DiscountCodeSetMaxApplicationsAction.json │ │ │ ├── DiscountCodeSetMaxApplicationsPerCustomerAction.json │ │ │ ├── DiscountCodeSetNameAction.json │ │ │ ├── DiscountCodeSetValidFromAction.json │ │ │ ├── DiscountCodeSetValidFromAndUntilAction.json │ │ │ └── DiscountCodeSetValidUntilAction.json │ │ ├── Error │ │ │ ├── AuthErrorResponse.json │ │ │ ├── ErrorResponse.json │ │ │ ├── ExtensionBadResponse.json │ │ │ ├── ExtensionNoResponse.json │ │ │ ├── ExtensionPredicateEvaluationFailed.json │ │ │ └── ExtensionUpdateActionsFailed.json │ │ ├── Extension │ │ │ ├── ExtensionChangeDestinationAction.json │ │ │ ├── ExtensionChangeTriggersAction.json │ │ │ └── ExtensionSetKeyAction.json │ │ ├── GraphQL │ │ │ └── GraphQLError.json │ │ ├── Inventory │ │ │ ├── InventoryEntryAddQuantityAction.json │ │ │ ├── InventoryEntryChangeQuantityAction.json │ │ │ ├── InventoryEntryRemoveQuantityAction.json │ │ │ ├── InventoryEntrySetCustomFieldAction.json │ │ │ ├── InventoryEntrySetCustomTypeAction.json │ │ │ ├── InventoryEntrySetExpectedDeliveryAction.json │ │ │ ├── InventoryEntrySetKeyAction.json │ │ │ ├── InventoryEntrySetRestockableInDaysAction.json │ │ │ └── InventoryEntrySetSupplyChannelAction.json │ │ ├── Order │ │ │ ├── OrderAddDeliveryAction.json │ │ │ ├── OrderAddItemShippingAddressAction.json │ │ │ ├── OrderAddParcelToDeliveryAction.json │ │ │ ├── OrderAddPaymentAction.json │ │ │ ├── OrderAddReturnInfoAction.json │ │ │ ├── OrderChangeOrderStateAction.json │ │ │ ├── OrderChangePaymentStateAction.json │ │ │ ├── OrderChangeShipmentStateAction.json │ │ │ ├── OrderImportCustomLineItemStateAction.json │ │ │ ├── OrderImportLineItemStateAction.json │ │ │ ├── OrderRemoveDeliveryAction.json │ │ │ ├── OrderRemoveItemShippingAddressAction.json │ │ │ ├── OrderRemoveParcelFromDeliveryAction.json │ │ │ ├── OrderRemovePaymentAction.json │ │ │ ├── OrderSetBillingAddressAction.json │ │ │ ├── OrderSetBillingAddressCustomFieldAction.json │ │ │ ├── OrderSetBillingAddressCustomTypeAction.json │ │ │ ├── OrderSetCustomFieldAction.json │ │ │ ├── OrderSetCustomLineItemCustomFieldAction.json │ │ │ ├── OrderSetCustomLineItemCustomTypeAction.json │ │ │ ├── OrderSetCustomLineItemShippingDetailsAction.json │ │ │ ├── OrderSetCustomTypeAction.json │ │ │ ├── OrderSetCustomerEmailAction.json │ │ │ ├── OrderSetCustomerIdAction.json │ │ │ ├── OrderSetDeliveryAddressAction.json │ │ │ ├── OrderSetDeliveryAddressCustomFieldAction.json │ │ │ ├── OrderSetDeliveryAddressCustomTypeAction.json │ │ │ ├── OrderSetDeliveryCustomFieldAction.json │ │ │ ├── OrderSetDeliveryCustomTypeAction.json │ │ │ ├── OrderSetDeliveryItemsAction.json │ │ │ ├── OrderSetItemShippingAddressCustomFieldAction.json │ │ │ ├── OrderSetItemShippingAddressCustomTypeAction.json │ │ │ ├── OrderSetLineItemCustomFieldAction.json │ │ │ ├── OrderSetLineItemCustomTypeAction.json │ │ │ ├── OrderSetLineItemShippingDetailsAction.json │ │ │ ├── OrderSetLocaleAction.json │ │ │ ├── OrderSetOrderNumberAction.json │ │ │ ├── OrderSetParcelCustomFieldAction.json │ │ │ ├── OrderSetParcelCustomTypeAction.json │ │ │ ├── OrderSetParcelItemsAction.json │ │ │ ├── OrderSetParcelMeasurementsAction.json │ │ │ ├── OrderSetParcelTrackingDataAction.json │ │ │ ├── OrderSetPurchaseOrderNumberAction.json │ │ │ ├── OrderSetReturnInfoAction.json │ │ │ ├── OrderSetReturnItemCustomFieldAction.json │ │ │ ├── OrderSetReturnItemCustomTypeAction.json │ │ │ ├── OrderSetReturnPaymentStateAction.json │ │ │ ├── OrderSetReturnShipmentStateAction.json │ │ │ ├── OrderSetShippingAddressAction.json │ │ │ ├── OrderSetShippingAddressCustomFieldAction.json │ │ │ ├── OrderSetShippingAddressCustomTypeAction.json │ │ │ ├── OrderSetShippingCustomFieldAction.json │ │ │ ├── OrderSetShippingCustomTypeAction.json │ │ │ ├── OrderSetStoreAction.json │ │ │ ├── OrderTransitionCustomLineItemStateAction.json │ │ │ ├── OrderTransitionLineItemStateAction.json │ │ │ ├── OrderTransitionStateAction.json │ │ │ ├── OrderUpdateItemShippingAddressAction.json │ │ │ └── OrderUpdateSyncInfoAction.json │ │ ├── OrderEdit │ │ │ ├── OrderEditAddStagedActionAction.json │ │ │ ├── OrderEditSetCommentAction.json │ │ │ ├── OrderEditSetCustomFieldAction.json │ │ │ ├── OrderEditSetCustomTypeAction.json │ │ │ ├── OrderEditSetKeyAction.json │ │ │ ├── OrderEditSetStagedActionsAction.json │ │ │ ├── StagedOrderAddCustomLineItemAction.json │ │ │ ├── StagedOrderAddDeliveryAction.json │ │ │ ├── StagedOrderAddDiscountCodeAction.json │ │ │ ├── StagedOrderAddItemShippingAddressAction.json │ │ │ ├── StagedOrderAddLineItemAction.json │ │ │ ├── StagedOrderAddParcelToDeliveryAction.json │ │ │ ├── StagedOrderAddPaymentAction.json │ │ │ ├── StagedOrderAddReturnInfoAction.json │ │ │ ├── StagedOrderAddShoppingListAction.json │ │ │ ├── StagedOrderChangeCustomLineItemMoneyAction.json │ │ │ ├── StagedOrderChangeCustomLineItemQuantityAction.json │ │ │ ├── StagedOrderChangeLineItemQuantityAction.json │ │ │ ├── StagedOrderChangeOrderStateAction.json │ │ │ ├── StagedOrderChangePaymentStateAction.json │ │ │ ├── StagedOrderChangeShipmentStateAction.json │ │ │ ├── StagedOrderChangeTaxCalculationModeAction.json │ │ │ ├── StagedOrderChangeTaxModeAction.json │ │ │ ├── StagedOrderChangeTaxRoundingModeAction.json │ │ │ ├── StagedOrderImportCustomLineItemStateAction.json │ │ │ ├── StagedOrderImportLineItemStateAction.json │ │ │ ├── StagedOrderRemoveCustomLineItemAction.json │ │ │ ├── StagedOrderRemoveDeliveryAction.json │ │ │ ├── StagedOrderRemoveDiscountCodeAction.json │ │ │ ├── StagedOrderRemoveItemShippingAddressAction.json │ │ │ ├── StagedOrderRemoveLineItemAction.json │ │ │ ├── StagedOrderRemoveParcelFromDeliveryAction.json │ │ │ ├── StagedOrderRemovePaymentAction.json │ │ │ ├── StagedOrderSetBillingAddressAction.json │ │ │ ├── StagedOrderSetBillingAddressCustomFieldAction.json │ │ │ ├── StagedOrderSetBillingAddressCustomTypeAction.json │ │ │ ├── StagedOrderSetCountryAction.json │ │ │ ├── StagedOrderSetCustomFieldAction.json │ │ │ ├── StagedOrderSetCustomLineItemCustomFieldAction.json │ │ │ ├── StagedOrderSetCustomLineItemCustomTypeAction.json │ │ │ ├── StagedOrderSetCustomLineItemShippingDetailsAction.json │ │ │ ├── StagedOrderSetCustomLineItemTaxAmountAction.json │ │ │ ├── StagedOrderSetCustomLineItemTaxRateAction.json │ │ │ ├── StagedOrderSetCustomShippingMethodAction.json │ │ │ ├── StagedOrderSetCustomTypeAction.json │ │ │ ├── StagedOrderSetCustomerEmailAction.json │ │ │ ├── StagedOrderSetCustomerGroupAction.json │ │ │ ├── StagedOrderSetCustomerIdAction.json │ │ │ ├── StagedOrderSetDeliveryAddressAction.json │ │ │ ├── StagedOrderSetDeliveryAddressCustomFieldAction.json │ │ │ ├── StagedOrderSetDeliveryAddressCustomTypeAction.json │ │ │ ├── StagedOrderSetDeliveryCustomFieldAction.json │ │ │ ├── StagedOrderSetDeliveryCustomTypeAction.json │ │ │ ├── StagedOrderSetDeliveryItemsAction.json │ │ │ ├── StagedOrderSetDirectDiscountsAction.json │ │ │ ├── StagedOrderSetItemShippingAddressCustomFieldAction.json │ │ │ ├── StagedOrderSetItemShippingAddressCustomTypeAction.json │ │ │ ├── StagedOrderSetLineItemCustomFieldAction.json │ │ │ ├── StagedOrderSetLineItemCustomTypeAction.json │ │ │ ├── StagedOrderSetLineItemDistributionChannelAction.json │ │ │ ├── StagedOrderSetLineItemPriceAction.json │ │ │ ├── StagedOrderSetLineItemShippingDetailsAction.json │ │ │ ├── StagedOrderSetLineItemTaxAmountAction.json │ │ │ ├── StagedOrderSetLineItemTaxRateAction.json │ │ │ ├── StagedOrderSetLineItemTotalPriceAction.json │ │ │ ├── StagedOrderSetLocaleAction.json │ │ │ ├── StagedOrderSetOrderNumberAction.json │ │ │ ├── StagedOrderSetOrderTotalTaxAction.json │ │ │ ├── StagedOrderSetParcelCustomFieldAction.json │ │ │ ├── StagedOrderSetParcelCustomTypeAction.json │ │ │ ├── StagedOrderSetParcelItemsAction.json │ │ │ ├── StagedOrderSetParcelMeasurementsAction.json │ │ │ ├── StagedOrderSetParcelTrackingDataAction.json │ │ │ ├── StagedOrderSetPurchaseOrderNumberAction.json │ │ │ ├── StagedOrderSetReturnInfoAction.json │ │ │ ├── StagedOrderSetReturnItemCustomFieldAction.json │ │ │ ├── StagedOrderSetReturnItemCustomTypeAction.json │ │ │ ├── StagedOrderSetReturnPaymentStateAction.json │ │ │ ├── StagedOrderSetReturnShipmentStateAction.json │ │ │ ├── StagedOrderSetShippingAddressAction.json │ │ │ ├── StagedOrderSetShippingAddressAndCustomShippingMethodAction.json │ │ │ ├── StagedOrderSetShippingAddressAndShippingMethodAction.json │ │ │ ├── StagedOrderSetShippingAddressCustomFieldAction.json │ │ │ ├── StagedOrderSetShippingAddressCustomTypeAction.json │ │ │ ├── StagedOrderSetShippingCustomFieldAction.json │ │ │ ├── StagedOrderSetShippingCustomTypeAction.json │ │ │ ├── StagedOrderSetShippingMethodAction.json │ │ │ ├── StagedOrderSetShippingMethodTaxAmountAction.json │ │ │ ├── StagedOrderSetShippingMethodTaxRateAction.json │ │ │ ├── StagedOrderSetShippingRateInputAction.json │ │ │ ├── StagedOrderSetStoreAction.json │ │ │ ├── StagedOrderTransitionCustomLineItemStateAction.json │ │ │ ├── StagedOrderTransitionLineItemStateAction.json │ │ │ ├── StagedOrderTransitionStateAction.json │ │ │ ├── StagedOrderUpdateItemShippingAddressAction.json │ │ │ └── StagedOrderUpdateSyncInfoAction.json │ │ ├── OrderSearch │ │ │ ├── order-search-request.example.json │ │ │ └── order-search.example.json │ │ ├── Payment │ │ │ ├── MyPaymentSetTransactionCustomFieldAction.json │ │ │ ├── PaymentAddInterfaceInteractionAction.json │ │ │ ├── PaymentAddTransactionAction.json │ │ │ ├── PaymentChangeAmountPlannedAction.json │ │ │ ├── PaymentChangeTransactionInteractionIdAction.json │ │ │ ├── PaymentChangeTransactionStateAction.json │ │ │ ├── PaymentChangeTransactionTimestampAction.json │ │ │ ├── PaymentSetAmountPaidAction.json │ │ │ ├── PaymentSetAmountRefundedAction.json │ │ │ ├── PaymentSetAnonymousIdAction.json │ │ │ ├── PaymentSetAuthorizationAction.json │ │ │ ├── PaymentSetCustomFieldAction.json │ │ │ ├── PaymentSetCustomTypeAction.json │ │ │ ├── PaymentSetCustomerAction.json │ │ │ ├── PaymentSetExternalIdAction.json │ │ │ ├── PaymentSetInterfaceIdAction.json │ │ │ ├── PaymentSetKeyAction.json │ │ │ ├── PaymentSetMethodInfoInterfaceAction.json │ │ │ ├── PaymentSetMethodInfoMethodAction.json │ │ │ ├── PaymentSetMethodInfoNameAction.json │ │ │ ├── PaymentSetStatusInterfaceCodeAction.json │ │ │ ├── PaymentSetStatusInterfaceTextAction.json │ │ │ ├── PaymentSetTransactionCustomFieldAction.json │ │ │ ├── PaymentSetTransactionCustomTypeAction.json │ │ │ └── PaymentTransitionStateAction.json │ │ ├── Product │ │ │ ├── CategoryOrderHints.json │ │ │ ├── ProductAddAssetAction.json │ │ │ ├── ProductAddExternalImageAction.json │ │ │ ├── ProductAddPriceAction.json │ │ │ ├── ProductAddToCategoryAction.json │ │ │ ├── ProductAddVariantAction.json │ │ │ ├── ProductChangeAssetNameAction.json │ │ │ ├── ProductChangeAssetOrderAction.json │ │ │ ├── ProductChangeMasterVariantAction.json │ │ │ ├── ProductChangeNameAction.json │ │ │ ├── ProductChangePriceAction.json │ │ │ ├── ProductChangeSlugAction.json │ │ │ ├── ProductLegacySetSkuAction.json │ │ │ ├── ProductMoveImageToPositionAction.json │ │ │ ├── ProductPublishAction.json │ │ │ ├── ProductRemoveAssetAction.json │ │ │ ├── ProductRemoveFromCategoryAction.json │ │ │ ├── ProductRemoveImageAction.json │ │ │ ├── ProductRemovePriceAction.json │ │ │ ├── ProductRemoveVariantAction.json │ │ │ ├── ProductRevertStagedChangesAction.json │ │ │ ├── ProductRevertStagedVariantChangesAction.json │ │ │ ├── ProductSetAssetCustomFieldAction.json │ │ │ ├── ProductSetAssetCustomTypeAction.json │ │ │ ├── ProductSetAssetDescriptionAction.json │ │ │ ├── ProductSetAssetKeyAction.json │ │ │ ├── ProductSetAssetSourcesAction.json │ │ │ ├── ProductSetAssetTagsAction.json │ │ │ ├── ProductSetAttributeAction.json │ │ │ ├── ProductSetAttributeInAllVariantsAction.json │ │ │ ├── ProductSetCategoryOrderHintAction.json │ │ │ ├── ProductSetDescriptionAction.json │ │ │ ├── ProductSetDiscountedPriceAction.json │ │ │ ├── ProductSetImageLabelAction.json │ │ │ ├── ProductSetKeyAction.json │ │ │ ├── ProductSetMetaDescriptionAction.json │ │ │ ├── ProductSetMetaKeywordsAction.json │ │ │ ├── ProductSetMetaTitleAction.json │ │ │ ├── ProductSetPriceKeyAction.json │ │ │ ├── ProductSetPriceModeAction.json │ │ │ ├── ProductSetPricesAction.json │ │ │ ├── ProductSetProductPriceCustomFieldAction.json │ │ │ ├── ProductSetProductPriceCustomTypeAction.json │ │ │ ├── ProductSetProductVariantKeyAction.json │ │ │ ├── ProductSetSearchKeywordsAction.json │ │ │ ├── ProductSetSkuAction.json │ │ │ ├── ProductSetTaxCategoryAction.json │ │ │ ├── ProductTransitionStateAction.json │ │ │ ├── ProductUnpublishAction.json │ │ │ ├── ProductVariantChannelAvailabilityMap.json │ │ │ └── SearchKeywords.json │ │ ├── ProductDiscount │ │ │ ├── ProductDiscountChangeIsActiveAction.json │ │ │ ├── ProductDiscountChangeNameAction.json │ │ │ ├── ProductDiscountChangePredicateAction.json │ │ │ ├── ProductDiscountChangeSortOrderAction.json │ │ │ ├── ProductDiscountChangeValueAction.json │ │ │ ├── ProductDiscountSetDescriptionAction.json │ │ │ ├── ProductDiscountSetKeyAction.json │ │ │ ├── ProductDiscountSetValidFromAction.json │ │ │ ├── ProductDiscountSetValidFromAndUntilAction.json │ │ │ └── ProductDiscountSetValidUntilAction.json │ │ ├── ProductSearch │ │ │ ├── product-search-request.example.json │ │ │ └── product-search-response.example.json │ │ ├── ProductSelection │ │ │ ├── ProductSelectionAddProductAction.json │ │ │ ├── ProductSelectionChangeNameAction.json │ │ │ ├── ProductSelectionExcludeProductAction.json │ │ │ ├── ProductSelectionRemoveProductAction.json │ │ │ ├── ProductSelectionSetCustomFieldAction.json │ │ │ ├── ProductSelectionSetCustomTypeAction.json │ │ │ ├── ProductSelectionSetKeyAction.json │ │ │ ├── ProductSelectionSetVariantExclusionAction.json │ │ │ └── ProductSelectionSetVariantSelectionAction.json │ │ ├── ProductTailoring │ │ │ ├── ProductTailoringAddAssetAction.json │ │ │ ├── ProductTailoringAddExternalImageAction.json │ │ │ ├── ProductTailoringAddVariantAction.json │ │ │ ├── ProductTailoringChangeAssetNameAction.json │ │ │ ├── ProductTailoringChangeAssetOrderAction.json │ │ │ ├── ProductTailoringMoveImageToPositionAction.json │ │ │ ├── ProductTailoringPublishAction.json │ │ │ ├── ProductTailoringRemoveAssetAction.json │ │ │ ├── ProductTailoringRemoveImageAction.json │ │ │ ├── ProductTailoringRemoveVariantAction.json │ │ │ ├── ProductTailoringSetAssetCustomFieldAction.json │ │ │ ├── ProductTailoringSetAssetCustomTypeAction.json │ │ │ ├── ProductTailoringSetAssetDescriptionAction.json │ │ │ ├── ProductTailoringSetAssetKeyAction.json │ │ │ ├── ProductTailoringSetAssetSourcesAction.json │ │ │ ├── ProductTailoringSetAssetTagsAction.json │ │ │ ├── ProductTailoringSetDescriptionAction.json │ │ │ ├── ProductTailoringSetExternalImagesAction.json │ │ │ ├── ProductTailoringSetImageLabelAction.json │ │ │ ├── ProductTailoringSetMetaAttributesAction.json │ │ │ ├── ProductTailoringSetMetaDescriptionAction.json │ │ │ ├── ProductTailoringSetMetaKeywordsAction.json │ │ │ ├── ProductTailoringSetMetaTitleAction.json │ │ │ ├── ProductTailoringSetNameAction.json │ │ │ ├── ProductTailoringSetSlugAction.json │ │ │ └── ProductTailoringUnpublishAction.json │ │ ├── ProductType │ │ │ ├── ProductTypeAddAttributeDefinitionAction.json │ │ │ ├── ProductTypeAddLocalizedEnumValueAction.json │ │ │ ├── ProductTypeAddPlainEnumValueAction.json │ │ │ ├── ProductTypeChangeAttributeConstraintAction.json │ │ │ ├── ProductTypeChangeAttributeNameAction.json │ │ │ ├── ProductTypeChangeAttributeOrderByNameAction.json │ │ │ ├── ProductTypeChangeDescriptionAction.json │ │ │ ├── ProductTypeChangeEnumKeyAction.json │ │ │ ├── ProductTypeChangeInputHintAction.json │ │ │ ├── ProductTypeChangeIsSearchableAction.json │ │ │ ├── ProductTypeChangeLabelAction.json │ │ │ ├── ProductTypeChangeLocalizedEnumValueLabelAction.json │ │ │ ├── ProductTypeChangeLocalizedEnumValueOrderAction.json │ │ │ ├── ProductTypeChangeNameAction.json │ │ │ ├── ProductTypeChangePlainEnumValueLabelAction.json │ │ │ ├── ProductTypeChangePlainEnumValueOrderAction.json │ │ │ ├── ProductTypeRemoveAttributeDefinitionAction.json │ │ │ ├── ProductTypeRemoveEnumValuesAction.json │ │ │ ├── ProductTypeSetInputTipAction.json │ │ │ └── ProductTypeSetKeyAction.json │ │ ├── Project │ │ │ ├── ProjectChangeBusinessUnitStatusOnCreationAction.json │ │ │ ├── ProjectChangeCountriesAction.json │ │ │ ├── ProjectChangeCountryTaxRateFallbackEnabledAction.json │ │ │ ├── ProjectChangeCurrenciesAction.json │ │ │ ├── ProjectChangeCustomerSearchStatusAction.json │ │ │ ├── ProjectChangeLanguagesAction.json │ │ │ ├── ProjectChangeMessagesConfigurationAction.json │ │ │ ├── ProjectChangeNameAction.json │ │ │ ├── ProjectChangeOrderSearchStatusAction.json │ │ │ ├── ProjectChangeProductSearchIndexingEnabledAction.json │ │ │ ├── ProjectSetBusinessUnitAssociateRoleOnCreationAction.json │ │ │ ├── ProjectSetShippingRateInputTypeAction.json │ │ │ └── ProjectShippingRateInputTypeCartClassification.json │ │ ├── Quote │ │ │ ├── QuoteChangeCustomerAction.json │ │ │ ├── QuoteChangeQuoteStateAction.json │ │ │ ├── QuoteRequestQuoteRenegotiationAction.json │ │ │ ├── QuoteSetCustomFieldAction.json │ │ │ ├── QuoteSetCustomTypeAction.json │ │ │ └── QuoteTransitionStateAction.json │ │ ├── QuoteRequest │ │ │ ├── QuoteRequestChangeCustomerAction.json │ │ │ ├── QuoteRequestChangeQuoteRequestStateAction.json │ │ │ ├── QuoteRequestSetCustomFieldAction.json │ │ │ ├── QuoteRequestSetCustomTypeAction.json │ │ │ └── QuoteRequestTransitionStateAction.json │ │ ├── Review │ │ │ ├── ReviewSetAuthorNameAction.json │ │ │ ├── ReviewSetCustomFieldAction.json │ │ │ ├── ReviewSetCustomTypeAction.json │ │ │ ├── ReviewSetCustomerAction.json │ │ │ ├── ReviewSetKeyAction.json │ │ │ ├── ReviewSetLocaleAction.json │ │ │ ├── ReviewSetRatingAction.json │ │ │ ├── ReviewSetTargetAction.json │ │ │ ├── ReviewSetTextAction.json │ │ │ ├── ReviewSetTitleAction.json │ │ │ └── ReviewTransitionStateAction.json │ │ ├── ShippingMethod │ │ │ ├── CartClassificationTier.json │ │ │ ├── CartScoreTierFunction.json │ │ │ ├── CartScoreTierPrice.json │ │ │ ├── CartValueTier.json │ │ │ ├── ShippingMethodAddShippingRateAction.json │ │ │ ├── ShippingMethodAddZoneAction.json │ │ │ ├── ShippingMethodChangeActiveAction.json │ │ │ ├── ShippingMethodChangeIsDefaultAction.json │ │ │ ├── ShippingMethodChangeNameAction.json │ │ │ ├── ShippingMethodChangeTaxCategoryAction.json │ │ │ ├── ShippingMethodRemoveShippingRateAction.json │ │ │ ├── ShippingMethodRemoveZoneAction.json │ │ │ ├── ShippingMethodSetCustomFieldAction.json │ │ │ ├── ShippingMethodSetCustomTypeAction.json │ │ │ ├── ShippingMethodSetDescriptionAction.json │ │ │ ├── ShippingMethodSetKeyAction.json │ │ │ ├── ShippingMethodSetLocalizedDescriptionAction.json │ │ │ ├── ShippingMethodSetLocalizedNameAction.json │ │ │ └── ShippingMethodSetPredicateAction.json │ │ ├── ShoppingList │ │ │ ├── ShoppingListAddLineItemAction.json │ │ │ ├── ShoppingListAddTextLineItemAction.json │ │ │ ├── ShoppingListChangeLineItemQuantityAction.json │ │ │ ├── ShoppingListChangeLineItemsOrderAction.json │ │ │ ├── ShoppingListChangeNameAction.json │ │ │ ├── ShoppingListChangeTextLineItemNameAction.json │ │ │ ├── ShoppingListChangeTextLineItemQuantityAction.json │ │ │ ├── ShoppingListChangeTextLineItemsOrderAction.json │ │ │ ├── ShoppingListLineItem.json │ │ │ ├── ShoppingListLineItemDraft.json │ │ │ ├── ShoppingListRemoveLineItemAction.json │ │ │ ├── ShoppingListRemoveTextLineItemAction.json │ │ │ ├── ShoppingListSetAnonymousIdAction.json │ │ │ ├── ShoppingListSetCustomFieldAction.json │ │ │ ├── ShoppingListSetCustomTypeAction.json │ │ │ ├── ShoppingListSetCustomerAction.json │ │ │ ├── ShoppingListSetDeleteDaysAfterLastModificationAction.json │ │ │ ├── ShoppingListSetDescriptionAction.json │ │ │ ├── ShoppingListSetKeyAction.json │ │ │ ├── ShoppingListSetLineItemCustomFieldAction.json │ │ │ ├── ShoppingListSetLineItemCustomTypeAction.json │ │ │ ├── ShoppingListSetSlugAction.json │ │ │ ├── ShoppingListSetStoreAction.json │ │ │ ├── ShoppingListSetTextLineItemCustomFieldAction.json │ │ │ ├── ShoppingListSetTextLineItemCustomTypeAction.json │ │ │ ├── ShoppingListSetTextLineItemDescriptionAction.json │ │ │ ├── TextLineItem.json │ │ │ └── TextLineItemDraft.json │ │ ├── StagedQuote │ │ │ ├── StagedQuoteChangeStagedQuoteStateAction.json │ │ │ ├── StagedQuoteSetCustomFieldAction.json │ │ │ ├── StagedQuoteSetCustomTypeAction.json │ │ │ ├── StagedQuoteSetSellerCommentAction.json │ │ │ ├── StagedQuoteSetValidToAction.json │ │ │ └── StagedQuoteTransitionStateAction.json │ │ ├── StandalonePrice │ │ │ ├── StandalonePriceAddPriceTierAction.json │ │ │ ├── StandalonePriceApplyStagedChangesAction.json │ │ │ ├── StandalonePriceChangeActiveAction.json │ │ │ ├── StandalonePriceChangeValueAction.json │ │ │ ├── StandalonePriceRemovePriceTierAction.json │ │ │ ├── StandalonePriceRemoveStagedChangesAction.json │ │ │ ├── StandalonePriceSetCustomFieldAction.json │ │ │ ├── StandalonePriceSetCustomTypeAction.json │ │ │ ├── StandalonePriceSetDiscountedPriceAction.json │ │ │ ├── StandalonePriceSetKeyAction.json │ │ │ ├── StandalonePriceSetPriceTiersAction.json │ │ │ ├── StandalonePriceSetValidFromAction.json │ │ │ ├── StandalonePriceSetValidFromAndUntilAction.json │ │ │ └── StandalonePriceSetValidUntilAction.json │ │ ├── State │ │ │ ├── StateAddRolesAction.json │ │ │ ├── StateChangeInitialAction.json │ │ │ ├── StateChangeKeyAction.json │ │ │ ├── StateChangeTypeAction.json │ │ │ ├── StateRemoveRolesAction.json │ │ │ ├── StateSetDescriptionAction.json │ │ │ ├── StateSetNameAction.json │ │ │ ├── StateSetRolesAction.json │ │ │ └── StateSetTransitionsAction.json │ │ ├── Store │ │ │ ├── StoreAddCountryAction.json │ │ │ ├── StoreAddDistributionChannelAction.json │ │ │ ├── StoreAddProductSelectionAction.json │ │ │ ├── StoreAddSupplyChannelAction.json │ │ │ ├── StoreChangeProductSelectionActiveAction.json │ │ │ ├── StoreRemoveCountryAction.json │ │ │ ├── StoreRemoveDistributionChannelAction.json │ │ │ ├── StoreRemoveProductSelectionAction.json │ │ │ ├── StoreRemoveSupplyChannelAction.json │ │ │ ├── StoreSetCountriesAction.json │ │ │ ├── StoreSetCustomFieldAction.json │ │ │ ├── StoreSetCustomTypeAction.json │ │ │ ├── StoreSetDistributionChannelsAction.json │ │ │ ├── StoreSetLanguagesAction.json │ │ │ ├── StoreSetNameAction.json │ │ │ ├── StoreSetProductSelectionsAction.json │ │ │ └── StoreSetSupplyChannelsAction.json │ │ ├── Subscription │ │ │ ├── SubscriptionAzureEventGridDestination.json │ │ │ ├── SubscriptionAzureServiceBusDestination.json │ │ │ ├── SubscriptionChangeDestinationAction.json │ │ │ ├── SubscriptionConfluentCloudDestination.json │ │ │ ├── SubscriptionEventBridgeDestination.json │ │ │ ├── SubscriptionGoogleCloudPubSubDestination.json │ │ │ ├── SubscriptionSetChangesAction.json │ │ │ ├── SubscriptionSetKeyAction.json │ │ │ ├── SubscriptionSetMessagesAction.json │ │ │ ├── SubscriptionSnsDestination.json │ │ │ ├── SubscriptionSqsDestination.json │ │ │ ├── cloudevents-payload.example.json │ │ │ ├── message-payload.example.json │ │ │ ├── payload-not-included.example.json │ │ │ ├── resource-created-payload.example.json │ │ │ ├── resource-deleted-payload.example.json │ │ │ └── resource-updated-payload.example.json │ │ ├── TaxCategory │ │ │ ├── TaxCategoryAddTaxRateAction.json │ │ │ ├── TaxCategoryChangeNameAction.json │ │ │ ├── TaxCategoryRemoveTaxRateAction.json │ │ │ ├── TaxCategoryReplaceTaxRateAction.json │ │ │ ├── TaxCategorySetDescriptionAction.json │ │ │ └── TaxCategorySetKeyAction.json │ │ ├── Type │ │ │ ├── FieldContainer.json │ │ │ ├── TypeAddEnumValueAction.json │ │ │ ├── TypeAddFieldDefinitionAction.json │ │ │ ├── TypeAddLocalizedEnumValueAction.json │ │ │ ├── TypeChangeEnumValueOrderAction.json │ │ │ ├── TypeChangeFieldDefinitionLabelAction.json │ │ │ ├── TypeChangeFieldDefinitionOrderAction.json │ │ │ ├── TypeChangeKeyAction.json │ │ │ ├── TypeChangeLabelAction.json │ │ │ ├── TypeChangeLocalizedEnumValueOrderAction.json │ │ │ ├── TypeChangeNameAction.json │ │ │ ├── TypeRemoveFieldDefinitionAction.json │ │ │ └── TypeSetDescriptionAction.json │ │ ├── Zone │ │ │ ├── ZoneAddLocationAction.json │ │ │ ├── ZoneChangeNameAction.json │ │ │ ├── ZoneRemoveLocationAction.json │ │ │ ├── ZoneSetDescriptionAction.json │ │ │ └── ZoneSetKeyAction.json │ │ ├── api-client-create.example.json │ │ ├── api-client-created.example.json │ │ ├── api-client.example.json │ │ ├── api-clients.example.json │ │ ├── approval-flow-update-response.example.json │ │ ├── approval-flow-update.example.json │ │ ├── approval-flow.example.json │ │ ├── approval-flows.example.json │ │ ├── approval-rule-create.example.json │ │ ├── approval-rule-update.example.json │ │ ├── approval-rule.example.json │ │ ├── approval-rules.example.json │ │ ├── associate-role-create.example.json │ │ ├── associate-role-update.example.json │ │ ├── associate-role.example.json │ │ ├── associate-roles.example.json │ │ ├── b2b-cart.example.json │ │ ├── b2b-carts.example.json │ │ ├── business-unit-create.example.json │ │ ├── business-unit-update.example.json │ │ ├── business-unit.example.json │ │ ├── business-units.example.json │ │ ├── cart-create.example.json │ │ ├── cart-discount-create.example.json │ │ ├── cart-discount-update.example.json │ │ ├── cart-discount.example.json │ │ ├── cart-discounts.example.json │ │ ├── cart-replicate.example.json │ │ ├── cart-update.example.json │ │ ├── cart.example.json │ │ ├── carts.example.json │ │ ├── categories.example.json │ │ ├── category-create.example.json │ │ ├── category-update.example.json │ │ ├── category.example.json │ │ ├── channel-create.example.json │ │ ├── channel-update.example.json │ │ ├── channel.example.json │ │ ├── channels.example.json │ │ ├── custom-object-create.example.json │ │ ├── custom-object.example.json │ │ ├── custom-objects.example.json │ │ ├── customer-create.example.json │ │ ├── customer-group-create.example.json │ │ ├── customer-group-update.example.json │ │ ├── customer-group.example.json │ │ ├── customer-groups.example.json │ │ ├── customer-sign-in-result.example.json │ │ ├── customer-update-response.example.json │ │ ├── customer-update.example.json │ │ ├── customer.example.json │ │ ├── customers.example.json │ │ ├── discount-code-create.example.json │ │ ├── discount-code-update.example.json │ │ ├── discount-code.example.json │ │ ├── discount-codes.example.json │ │ ├── error.example.json │ │ ├── extension-create.example.json │ │ ├── extension-update.example.json │ │ ├── extension.example.json │ │ ├── extensions.example.json │ │ ├── graphql-query.example.json │ │ ├── graphql.example.json │ │ ├── inventories.example.json │ │ ├── inventory-create.example.json │ │ ├── inventory-update.example.json │ │ ├── inventory.example.json │ │ ├── message.example.json │ │ ├── messages.example.json │ │ ├── my-business-unit-associate-draft.example.json │ │ ├── my-business-unit-create.example.json │ │ ├── my-business-unit-update.example.json │ │ ├── my-business-unit.example.json │ │ ├── my-business-units.example.json │ │ ├── my-order-create.example.json │ │ ├── my-order-from-quote.example.json │ │ ├── my-payment-create.example.json │ │ ├── my-payment-update.example.json │ │ ├── my-payment.example.json │ │ ├── my-payments.example.json │ │ ├── my-quote-change-my-quote-state.example.json │ │ ├── my-quote-request-create.example.json │ │ ├── my-quote-request-update.example.json │ │ ├── my-quote-update.example.json │ │ ├── my-shopping-list-create.example.json │ │ ├── my-shopping-list-update.example.json │ │ ├── my-shopping-list.example.json │ │ ├── my-shopping-lists.example.json │ │ ├── no-matching-product-discounts-found-error.example.json │ │ ├── order-create.example.json │ │ ├── order-edits-create.example.json │ │ ├── order-edits-query.example.json │ │ ├── order-edits-update.example.json │ │ ├── order-edits.example.json │ │ ├── order-from-quote.example.json │ │ ├── order-import.example.json │ │ ├── order-update.example.json │ │ ├── order.example.json │ │ ├── orders.example.json │ │ ├── payment-create.example.json │ │ ├── payment-update.example.json │ │ ├── payment.example.json │ │ ├── payments.example.json │ │ ├── product-assigned-selections.example.json │ │ ├── product-create.example.json │ │ ├── product-discount-create.example.json │ │ ├── product-discount-update.example.json │ │ ├── product-discount.example.json │ │ ├── product-discounts.example.json │ │ ├── product-projection-suggest.example.json │ │ ├── product-projection.example.json │ │ ├── product-projections-search.example.json │ │ ├── product-projections.example.json │ │ ├── product-selection-create.example.json │ │ ├── product-selection-products.example.json │ │ ├── product-selection-update.example.json │ │ ├── product-selection.example.json │ │ ├── product-selections.example.json │ │ ├── product-tailoring-create.example.json │ │ ├── product-tailoring-in-store-create.example.json │ │ ├── product-tailoring-list.example.json │ │ ├── product-tailoring-update.example.json │ │ ├── product-tailoring-updated.example.json │ │ ├── product-tailoring.example.json │ │ ├── product-type-create.example.json │ │ ├── product-type-update.example.json │ │ ├── product-type.example.json │ │ ├── product-types.example.json │ │ ├── product-update.example.json │ │ ├── product.example.json │ │ ├── products-in-store.example.json │ │ ├── products.example.json │ │ ├── project.example.json │ │ ├── quote-create.example.json │ │ ├── quote-request-create.example.json │ │ ├── quote-request-update-response.example.json │ │ ├── quote-request-update.example.json │ │ ├── quote-request.example.json │ │ ├── quote-requests.example.json │ │ ├── quote-update.example.json │ │ ├── quote.example.json │ │ ├── quotes.example.json │ │ ├── review-create.example.json │ │ ├── review-update.example.json │ │ ├── review.example.json │ │ ├── reviews.example.json │ │ ├── shipping-method-create.example.json │ │ ├── shipping-method-update.example.json │ │ ├── shipping-method.example.json │ │ ├── shipping-methods.example.json │ │ ├── shopping-list-create.example.json │ │ ├── shopping-list-update.example.json │ │ ├── shopping-list.example.json │ │ ├── shopping-lists.example.json │ │ ├── staged-quote-create.example.json │ │ ├── staged-quote-update.example.json │ │ ├── staged-quote.example.json │ │ ├── staged-quotes.example.json │ │ ├── standalone-price-create.example.json │ │ ├── standalone-price-update.example.json │ │ ├── standalone-price.example.json │ │ ├── standalone-prices.example.json │ │ ├── state-create.example.json │ │ ├── state-update.example.json │ │ ├── state.example.json │ │ ├── states.example.json │ │ ├── store-create.example.json │ │ ├── store-update.example.json │ │ ├── store.example.json │ │ ├── stores.example.json │ │ ├── subscription-create.example.json │ │ ├── subscription-update.example.json │ │ ├── subscription.example.json │ │ ├── subscriptions.example.json │ │ ├── tax-categories.example.json │ │ ├── tax-category-create.example.json │ │ ├── tax-category-update.example.json │ │ ├── tax-category.example.json │ │ ├── type-create.example.json │ │ ├── type-update.example.json │ │ ├── type.example.json │ │ ├── types.example.json │ │ ├── zone-create.example.json │ │ ├── zone-update.example.json │ │ ├── zone.example.json │ │ └── zones.example.json │ ├── oauth.raml │ ├── package.json │ ├── postman.raml │ ├── resources │ │ ├── api-clients.raml │ │ ├── as-associate.raml │ │ ├── associate-roles.raml │ │ ├── attribute-groups.raml │ │ ├── business-units.raml │ │ ├── cart-discounts.raml │ │ ├── carts.raml │ │ ├── categories.raml │ │ ├── channels.raml │ │ ├── custom-objects.raml │ │ ├── customer-groups.raml │ │ ├── customers.raml │ │ ├── discount-codes.raml │ │ ├── extensions.raml │ │ ├── graphql.raml │ │ ├── in-business-unit.raml │ │ ├── in-store.raml │ │ ├── inventory.raml │ │ ├── login.raml │ │ ├── me.raml │ │ ├── messages.raml │ │ ├── orders.raml │ │ ├── payments.raml │ │ ├── product-discounts.raml │ │ ├── product-projections-search.raml │ │ ├── product-projections-suggest.raml │ │ ├── product-projections.raml │ │ ├── product-selections.raml │ │ ├── product-tailoring.raml │ │ ├── product-types.raml │ │ ├── products.raml │ │ ├── quote-requests.raml │ │ ├── quotes.raml │ │ ├── reviews.raml │ │ ├── shipping-methods.raml │ │ ├── shopping-lists.raml │ │ ├── staged-quotes.raml │ │ ├── standalone-prices.raml │ │ ├── states.raml │ │ ├── stores.raml │ │ ├── subscriptions.raml │ │ ├── tax-categories.raml │ │ ├── types.raml │ │ └── zones.raml │ ├── ruleset.xml │ ├── securitySchemes │ │ ├── oauth2.raml │ │ ├── oauth2_anonymous.raml │ │ ├── oauth2_password.raml │ │ └── oauth2_refresh.raml │ ├── traits │ │ ├── conflicting.raml │ │ ├── data-erasure.raml │ │ ├── deprecatable200.raml │ │ ├── deprecatable201.raml │ │ ├── errorable.raml │ │ ├── expandable.raml │ │ ├── locale-projecting.raml │ │ ├── paging.raml │ │ ├── price-selecting.raml │ │ ├── projection-selecting.raml │ │ ├── query.raml │ │ ├── sortable.raml │ │ ├── store-projecting.raml │ │ └── versioned.raml │ ├── types │ │ ├── PagedQueryResponse.raml │ │ ├── Update.raml │ │ ├── UpdateAction.raml │ │ ├── annotations.raml │ │ ├── api-client │ │ │ ├── ApiClient.raml │ │ │ ├── ApiClientDraft.raml │ │ │ └── ApiClientPagedQueryResponse.raml │ │ ├── approval-flow │ │ │ ├── ApprovalFlow.raml │ │ │ ├── ApprovalFlowApproval.raml │ │ │ ├── ApprovalFlowApproveAction.raml │ │ │ ├── ApprovalFlowPagedQueryResponse.raml │ │ │ ├── ApprovalFlowRejectAction.raml │ │ │ ├── ApprovalFlowRejection.raml │ │ │ ├── ApprovalFlowSetCustomFieldAction.raml │ │ │ ├── ApprovalFlowSetCustomTypeAction.raml │ │ │ ├── ApprovalFlowStatus.raml │ │ │ ├── ApprovalFlowUpdate.raml │ │ │ └── ApprovalFlowUpdateAction.raml │ │ ├── approval-rule │ │ │ ├── ApprovalRule.raml │ │ │ ├── ApprovalRuleDraft.raml │ │ │ ├── ApprovalRulePagedQueryResponse.raml │ │ │ ├── ApprovalRuleSetApproversAction.raml │ │ │ ├── ApprovalRuleSetDescriptionAction.raml │ │ │ ├── ApprovalRuleSetKeyAction.raml │ │ │ ├── ApprovalRuleSetNameAction.raml │ │ │ ├── ApprovalRuleSetPredicateAction.raml │ │ │ ├── ApprovalRuleSetRequestersAction.raml │ │ │ ├── ApprovalRuleSetStatusAction.raml │ │ │ ├── ApprovalRuleStatus.raml │ │ │ ├── ApprovalRuleUpdate.raml │ │ │ ├── ApprovalRuleUpdateAction.raml │ │ │ ├── ApproverConjunction.raml │ │ │ ├── ApproverConjunctionDraft.raml │ │ │ ├── ApproverDisjunction.raml │ │ │ ├── ApproverDisjunctionDraft.raml │ │ │ ├── ApproverHierarchy.raml │ │ │ ├── ApproverHierarchyDraft.raml │ │ │ ├── RuleApprover.raml │ │ │ ├── RuleApproverDraft.raml │ │ │ ├── RuleRequester.raml │ │ │ └── RuleRequesterDraft.raml │ │ ├── associate-role │ │ │ ├── AssociateRole.raml │ │ │ ├── AssociateRoleDraft.raml │ │ │ ├── AssociateRoleKeyReference.raml │ │ │ ├── AssociateRolePagedQueryResponse.raml │ │ │ ├── AssociateRoleReference.raml │ │ │ ├── AssociateRoleResourceIdentifier.raml │ │ │ ├── AssociateRoleUpdate.raml │ │ │ ├── AssociateRoleUpdateAction.raml │ │ │ ├── Permission.raml │ │ │ └── updates │ │ │ │ ├── AssociateRoleAddPermissionAction.raml │ │ │ │ ├── AssociateRoleChangeBuyerAssignableAction.raml │ │ │ │ ├── AssociateRoleRemovePermissionAction.raml │ │ │ │ ├── AssociateRoleSetCustomFieldAction.raml │ │ │ │ ├── AssociateRoleSetCustomTypeAction.raml │ │ │ │ ├── AssociateRoleSetNameAction.raml │ │ │ │ └── AssociateRoleSetPermissionsAction.raml │ │ ├── attribute-group │ │ │ ├── AttributeGroup.raml │ │ │ ├── AttributeGroupDraft.raml │ │ │ ├── AttributeGroupPagedQueryResponse.raml │ │ │ ├── AttributeGroupReference.raml │ │ │ ├── AttributeGroupResourceIdentifier.raml │ │ │ ├── AttributeGroupUpdate.raml │ │ │ ├── AttributeGroupUpdateAction.raml │ │ │ ├── AttributeReference.raml │ │ │ └── updates │ │ │ │ ├── AttributeGroupAddAttributeAction.raml │ │ │ │ ├── AttributeGroupChangeNameAction.raml │ │ │ │ ├── AttributeGroupRemoveAttributeAction.raml │ │ │ │ ├── AttributeGroupSetAttributesAction.raml │ │ │ │ ├── AttributeGroupSetDescriptionAction.raml │ │ │ │ └── AttributeGroupSetKeyAction.raml │ │ ├── business-unit │ │ │ ├── Associate.raml │ │ │ ├── AssociateDraft.raml │ │ │ ├── AssociateRoleAssignment.raml │ │ │ ├── AssociateRoleAssignmentDraft.raml │ │ │ ├── AssociateRoleDeprecated.raml │ │ │ ├── AssociateRoleInheritanceMode.raml │ │ │ ├── BusinessUnit.raml │ │ │ ├── BusinessUnitApprovalRuleMode.raml │ │ │ ├── BusinessUnitAssociateMode.raml │ │ │ ├── BusinessUnitDraft.raml │ │ │ ├── BusinessUnitKeyReference.raml │ │ │ ├── BusinessUnitPagedQueryResponse.raml │ │ │ ├── BusinessUnitReference.raml │ │ │ ├── BusinessUnitResourceIdentifier.raml │ │ │ ├── BusinessUnitStatus.raml │ │ │ ├── BusinessUnitStoreMode.raml │ │ │ ├── BusinessUnitType.raml │ │ │ ├── BusinessUnitUpdate.raml │ │ │ ├── BusinessUnitUpdateAction.raml │ │ │ ├── Company.raml │ │ │ ├── CompanyDraft.raml │ │ │ ├── Division.raml │ │ │ ├── DivisionDraft.raml │ │ │ ├── InheritedAssociate.raml │ │ │ ├── InheritedAssociateRoleAssignment.raml │ │ │ └── updates │ │ │ │ ├── BusinessUnitAddAddressAction.raml │ │ │ │ ├── BusinessUnitAddAssociateAction.raml │ │ │ │ ├── BusinessUnitAddBillingAddressIdAction.raml │ │ │ │ ├── BusinessUnitAddShippingAddressIdAction.raml │ │ │ │ ├── BusinessUnitAddStoreAction.raml │ │ │ │ ├── BusinessUnitChangeAddressAction.raml │ │ │ │ ├── BusinessUnitChangeApprovalRuleModeAction.raml │ │ │ │ ├── BusinessUnitChangeAssociateAction.raml │ │ │ │ ├── BusinessUnitChangeAssociateModeAction.raml │ │ │ │ ├── BusinessUnitChangeNameAction.raml │ │ │ │ ├── BusinessUnitChangeParentUnitAction.raml │ │ │ │ ├── BusinessUnitChangeStatusAction.raml │ │ │ │ ├── BusinessUnitRemoveAddressAction.raml │ │ │ │ ├── BusinessUnitRemoveAssociateAction.raml │ │ │ │ ├── BusinessUnitRemoveBillingAddressIdAction.raml │ │ │ │ ├── BusinessUnitRemoveShippingAddressIdAction.raml │ │ │ │ ├── BusinessUnitRemoveStoreAction.raml │ │ │ │ ├── BusinessUnitSetAddressCustomFieldAction.raml │ │ │ │ ├── BusinessUnitSetAddressCustomTypeAction.raml │ │ │ │ ├── BusinessUnitSetAssociatesAction.raml │ │ │ │ ├── BusinessUnitSetContactEmailAction.raml │ │ │ │ ├── BusinessUnitSetCustomFieldAction.raml │ │ │ │ ├── BusinessUnitSetCustomTypeAction.raml │ │ │ │ ├── BusinessUnitSetDefaultBillingAddressAction.raml │ │ │ │ ├── BusinessUnitSetDefaultShippingAddressAction.raml │ │ │ │ ├── BusinessUnitSetStoreModeAction.raml │ │ │ │ └── BusinessUnitSetStoresAction.raml │ │ ├── cart-discount │ │ │ ├── CartDiscount.raml │ │ │ ├── CartDiscountCustomLineItemsTarget.raml │ │ │ ├── CartDiscountDraft.raml │ │ │ ├── CartDiscountLineItemsTarget.raml │ │ │ ├── CartDiscountPagedQueryResponse.raml │ │ │ ├── CartDiscountReference.raml │ │ │ ├── CartDiscountResourceIdentifier.raml │ │ │ ├── CartDiscountShippingCostTarget.raml │ │ │ ├── CartDiscountTarget.raml │ │ │ ├── CartDiscountTotalPriceTarget.raml │ │ │ ├── CartDiscountUpdate.raml │ │ │ ├── CartDiscountUpdateAction.raml │ │ │ ├── CartDiscountValue.raml │ │ │ ├── CartDiscountValueAbsolute.raml │ │ │ ├── CartDiscountValueAbsoluteDraft.raml │ │ │ ├── CartDiscountValueDraft.raml │ │ │ ├── CartDiscountValueFixed.raml │ │ │ ├── CartDiscountValueFixedDraft.raml │ │ │ ├── CartDiscountValueGiftLineItem.raml │ │ │ ├── CartDiscountValueGiftLineItemDraft.raml │ │ │ ├── CartDiscountValueRelative.raml │ │ │ ├── CartDiscountValueRelativeDraft.raml │ │ │ ├── MultiBuyCustomLineItemsTarget.raml │ │ │ ├── MultiBuyLineItemsTarget.raml │ │ │ ├── SelectionMode.raml │ │ │ ├── StackingMode.raml │ │ │ └── updates │ │ │ │ ├── CartDiscountAddStoreAction.raml │ │ │ │ ├── CartDiscountChangeCartPredicateAction.raml │ │ │ │ ├── CartDiscountChangeIsActiveAction.raml │ │ │ │ ├── CartDiscountChangeNameAction.raml │ │ │ │ ├── CartDiscountChangeRequiresDiscountCodeAction.raml │ │ │ │ ├── CartDiscountChangeSortOrderAction.raml │ │ │ │ ├── CartDiscountChangeStackingModeAction.raml │ │ │ │ ├── CartDiscountChangeTargetAction.raml │ │ │ │ ├── CartDiscountChangeValueAction.raml │ │ │ │ ├── CartDiscountRemoveStoreAction.raml │ │ │ │ ├── CartDiscountSetCustomFieldAction.raml │ │ │ │ ├── CartDiscountSetCustomTypeAction.raml │ │ │ │ ├── CartDiscountSetDescriptionAction.raml │ │ │ │ ├── CartDiscountSetKeyAction.raml │ │ │ │ ├── CartDiscountSetStoresAction.raml │ │ │ │ ├── CartDiscountSetValidFromAction.raml │ │ │ │ ├── CartDiscountSetValidFromAndUntilAction.raml │ │ │ │ └── CartDiscountSetValidUntilAction.raml │ │ ├── cart │ │ │ ├── Cart.raml │ │ │ ├── CartDraft.raml │ │ │ ├── CartOrigin.raml │ │ │ ├── CartPagedQueryResponse.raml │ │ │ ├── CartReference.raml │ │ │ ├── CartResourceIdentifier.raml │ │ │ ├── CartState.raml │ │ │ ├── CartUpdate.raml │ │ │ ├── CartUpdateAction.raml │ │ │ ├── ClassificationShippingRateInput.raml │ │ │ ├── ClassificationShippingRateInputDraft.raml │ │ │ ├── CustomLineItem.raml │ │ │ ├── CustomLineItemDraft.raml │ │ │ ├── CustomLineItemPriceMode.raml │ │ │ ├── CustomShippingDraft.raml │ │ │ ├── DirectDiscount.raml │ │ │ ├── DirectDiscountDraft.raml │ │ │ ├── DirectDiscountReference.raml │ │ │ ├── DiscountCodeInfo.raml │ │ │ ├── DiscountCodeState.raml │ │ │ ├── DiscountOnTotalPrice.raml │ │ │ ├── DiscountedLineItemPortion.raml │ │ │ ├── DiscountedLineItemPortionDraft.raml │ │ │ ├── DiscountedLineItemPrice.raml │ │ │ ├── DiscountedLineItemPriceForQuantity.raml │ │ │ ├── DiscountedTotalPricePortion.raml │ │ │ ├── ExternalLineItemTotalPrice.raml │ │ │ ├── ExternalTaxAmountDraft.raml │ │ │ ├── ExternalTaxRateDraft.raml │ │ │ ├── InventoryMode.raml │ │ │ ├── ItemShippingDetails.raml │ │ │ ├── ItemShippingDetailsDraft.raml │ │ │ ├── ItemShippingTarget.raml │ │ │ ├── LineItem.raml │ │ │ ├── LineItemDraft.raml │ │ │ ├── LineItemMode.raml │ │ │ ├── LineItemPriceMode.raml │ │ │ ├── MethodExternalTaxRateDraft.raml │ │ │ ├── MethodTaxRate.raml │ │ │ ├── MethodTaxedPrice.raml │ │ │ ├── ReplicaCartDraft.raml │ │ │ ├── RoundingMode.raml │ │ │ ├── ScoreShippingRateInput.raml │ │ │ ├── ScoreShippingRateInputDraft.raml │ │ │ ├── Shipping.raml │ │ │ ├── ShippingDraft.raml │ │ │ ├── ShippingInfo.raml │ │ │ ├── ShippingMethodState.raml │ │ │ ├── ShippingMode.raml │ │ │ ├── ShippingRateInput.raml │ │ │ ├── ShippingRateInputDraft.raml │ │ │ ├── TaxCalculationMode.raml │ │ │ ├── TaxMode.raml │ │ │ ├── TaxPortion.raml │ │ │ ├── TaxPortionDraft.raml │ │ │ ├── TaxedItemPrice.raml │ │ │ ├── TaxedPrice.raml │ │ │ ├── TaxedPriceDraft.raml │ │ │ └── updates │ │ │ │ ├── CartAddCustomLineItemAction.raml │ │ │ │ ├── CartAddCustomShippingMethodAction.raml │ │ │ │ ├── CartAddDiscountCodeAction.raml │ │ │ │ ├── CartAddItemShippingAddressAction.raml │ │ │ │ ├── CartAddLineItemAction.raml │ │ │ │ ├── CartAddPaymentAction.raml │ │ │ │ ├── CartAddShippingMethodAction.raml │ │ │ │ ├── CartAddShoppingListAction.raml │ │ │ │ ├── CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction.raml │ │ │ │ ├── CartApplyDeltaToLineItemShippingDetailsTargetsAction.raml │ │ │ │ ├── CartChangeCustomLineItemMoneyAction.raml │ │ │ │ ├── CartChangeCustomLineItemPriceModeAction.raml │ │ │ │ ├── CartChangeCustomLineItemQuantityAction.raml │ │ │ │ ├── CartChangeLineItemQuantityAction.raml │ │ │ │ ├── CartChangeLineItemsOrderAction.raml │ │ │ │ ├── CartChangeTaxCalculationModeAction.raml │ │ │ │ ├── CartChangeTaxModeAction.raml │ │ │ │ ├── CartChangeTaxRoundingModeAction.raml │ │ │ │ ├── CartFreezeCartAction.raml │ │ │ │ ├── CartRecalculateAction.raml │ │ │ │ ├── CartRemoveCustomLineItemAction.raml │ │ │ │ ├── CartRemoveDiscountCodeAction.raml │ │ │ │ ├── CartRemoveItemShippingAddressAction.raml │ │ │ │ ├── CartRemoveLineItemAction.raml │ │ │ │ ├── CartRemovePaymentAction.raml │ │ │ │ ├── CartRemoveShippingMethodAction.raml │ │ │ │ ├── CartSetAnonymousIdAction.raml │ │ │ │ ├── CartSetBillingAddressAction.raml │ │ │ │ ├── CartSetBillingAddressCustomFieldAction.raml │ │ │ │ ├── CartSetBillingAddressCustomTypeAction.raml │ │ │ │ ├── CartSetBusinessUnitAction.raml │ │ │ │ ├── CartSetCartTotalTaxAction.raml │ │ │ │ ├── CartSetCountryAction.raml │ │ │ │ ├── CartSetCustomFieldAction.raml │ │ │ │ ├── CartSetCustomLineItemCustomFieldAction.raml │ │ │ │ ├── CartSetCustomLineItemCustomTypeAction.raml │ │ │ │ ├── CartSetCustomLineItemShippingDetailsAction.raml │ │ │ │ ├── CartSetCustomLineItemTaxAmountAction.raml │ │ │ │ ├── CartSetCustomLineItemTaxRateAction.raml │ │ │ │ ├── CartSetCustomShippingMethodAction.raml │ │ │ │ ├── CartSetCustomTypeAction.raml │ │ │ │ ├── CartSetCustomerEmailAction.raml │ │ │ │ ├── CartSetCustomerGroupAction.raml │ │ │ │ ├── CartSetCustomerIdAction.raml │ │ │ │ ├── CartSetDeleteDaysAfterLastModificationAction.raml │ │ │ │ ├── CartSetDirectDiscountsAction.raml │ │ │ │ ├── CartSetItemShippingAddressCustomFieldAction.raml │ │ │ │ ├── CartSetItemShippingAddressCustomTypeAction.raml │ │ │ │ ├── CartSetKeyAction.raml │ │ │ │ ├── CartSetLineItemCustomFieldAction.raml │ │ │ │ ├── CartSetLineItemCustomTypeAction.raml │ │ │ │ ├── CartSetLineItemDistributionChannelAction.raml │ │ │ │ ├── CartSetLineItemInventoryModeAction.raml │ │ │ │ ├── CartSetLineItemPriceAction.raml │ │ │ │ ├── CartSetLineItemShippingDetailsAction.raml │ │ │ │ ├── CartSetLineItemSupplyChannelAction.raml │ │ │ │ ├── CartSetLineItemTaxAmountAction.raml │ │ │ │ ├── CartSetLineItemTaxRateAction.raml │ │ │ │ ├── CartSetLineItemTotalPriceAction.raml │ │ │ │ ├── CartSetLocaleAction.raml │ │ │ │ ├── CartSetShippingAddressAction.raml │ │ │ │ ├── CartSetShippingAddressCustomFieldAction.raml │ │ │ │ ├── CartSetShippingAddressCustomTypeAction.raml │ │ │ │ ├── CartSetShippingCustomFieldAction.raml │ │ │ │ ├── CartSetShippingCustomTypeAction.raml │ │ │ │ ├── CartSetShippingMethodAction.raml │ │ │ │ ├── CartSetShippingMethodTaxAmountAction.raml │ │ │ │ ├── CartSetShippingMethodTaxRateAction.raml │ │ │ │ ├── CartSetShippingRateInputAction.raml │ │ │ │ ├── CartUnfreezeCartAction.raml │ │ │ │ └── CartUpdateItemShippingAddressAction.raml │ │ ├── category │ │ │ ├── Category.raml │ │ │ ├── CategoryDraft.raml │ │ │ ├── CategoryPagedQueryResponse.raml │ │ │ ├── CategoryReference.raml │ │ │ ├── CategoryResourceIdentifier.raml │ │ │ ├── CategoryUpdate.raml │ │ │ ├── CategoryUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── CategoryAddAssetAction.raml │ │ │ │ ├── CategoryChangeAssetNameAction.raml │ │ │ │ ├── CategoryChangeAssetOrderAction.raml │ │ │ │ ├── CategoryChangeNameAction.raml │ │ │ │ ├── CategoryChangeOrderHintAction.raml │ │ │ │ ├── CategoryChangeParentAction.raml │ │ │ │ ├── CategoryChangeSlugAction.raml │ │ │ │ ├── CategoryRemoveAssetAction.raml │ │ │ │ ├── CategorySetAssetCustomFieldAction.raml │ │ │ │ ├── CategorySetAssetCustomTypeAction.raml │ │ │ │ ├── CategorySetAssetDescriptionAction.raml │ │ │ │ ├── CategorySetAssetKeyAction.raml │ │ │ │ ├── CategorySetAssetSourcesAction.raml │ │ │ │ ├── CategorySetAssetTagsAction.raml │ │ │ │ ├── CategorySetCustomFieldAction.raml │ │ │ │ ├── CategorySetCustomTypeAction.raml │ │ │ │ ├── CategorySetDescriptionAction.raml │ │ │ │ ├── CategorySetExternalIdAction.raml │ │ │ │ ├── CategorySetKeyAction.raml │ │ │ │ ├── CategorySetMetaDescriptionAction.raml │ │ │ │ ├── CategorySetMetaKeywordsAction.raml │ │ │ │ └── CategorySetMetaTitleAction.raml │ │ ├── channel │ │ │ ├── Channel.raml │ │ │ ├── ChannelDraft.raml │ │ │ ├── ChannelPagedQueryResponse.raml │ │ │ ├── ChannelReference.raml │ │ │ ├── ChannelResourceIdentifier.raml │ │ │ ├── ChannelRoleEnum.raml │ │ │ ├── ChannelUpdate.raml │ │ │ ├── ChannelUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── ChannelAddRolesAction.raml │ │ │ │ ├── ChannelChangeDescriptionAction.raml │ │ │ │ ├── ChannelChangeKeyAction.raml │ │ │ │ ├── ChannelChangeNameAction.raml │ │ │ │ ├── ChannelRemoveRolesAction.raml │ │ │ │ ├── ChannelSetAddressAction.raml │ │ │ │ ├── ChannelSetAddressCustomFieldAction.raml │ │ │ │ ├── ChannelSetAddressCustomTypeAction.raml │ │ │ │ ├── ChannelSetCustomFieldAction.raml │ │ │ │ ├── ChannelSetCustomTypeAction.raml │ │ │ │ ├── ChannelSetGeoLocationAction.raml │ │ │ │ └── ChannelSetRolesAction.raml │ │ ├── common │ │ │ ├── Address.raml │ │ │ ├── AddressDraft.raml │ │ │ ├── Asset.raml │ │ │ ├── AssetDimensions.raml │ │ │ ├── AssetDraft.raml │ │ │ ├── AssetSource.raml │ │ │ ├── Attribution.raml │ │ │ ├── AttributionSource.raml │ │ │ ├── BaseAddress.raml │ │ │ ├── BaseResource.raml │ │ │ ├── CentPrecisionMoney.raml │ │ │ ├── CentPrecisionMoneyDraft.raml │ │ │ ├── ClientLogging.raml │ │ │ ├── CountryCode.raml │ │ │ ├── CreatedBy.raml │ │ │ ├── CurrencyCode.raml │ │ │ ├── DiscountedPrice.raml │ │ │ ├── DiscountedPriceDraft.raml │ │ │ ├── Expansion.raml │ │ │ ├── GeoJson.raml │ │ │ ├── GeoJsonPoint.raml │ │ │ ├── HighPrecisionMoney.raml │ │ │ ├── HighPrecisionMoneyDraft.raml │ │ │ ├── Image.raml │ │ │ ├── ImageDimensions.raml │ │ │ ├── KeyReference.raml │ │ │ ├── LastModifiedBy.raml │ │ │ ├── Locale.raml │ │ │ ├── LocalizedString.raml │ │ │ ├── Money.raml │ │ │ ├── MoneyType.raml │ │ │ ├── Price.raml │ │ │ ├── PriceDraft.raml │ │ │ ├── PriceTier.raml │ │ │ ├── PriceTierDraft.raml │ │ │ ├── QueryPredicate.raml │ │ │ ├── QueryPrice.raml │ │ │ ├── Reference.raml │ │ │ ├── ReferenceTypeId.raml │ │ │ ├── ResourceIdentifier.raml │ │ │ ├── ScopedPrice.raml │ │ │ ├── Sort.raml │ │ │ ├── TypedMoney.raml │ │ │ └── TypedMoneyDraft.raml │ │ ├── custom-object │ │ │ ├── CustomObject.raml │ │ │ ├── CustomObjectDraft.raml │ │ │ ├── CustomObjectPagedQueryResponse.raml │ │ │ └── CustomObjectReference.raml │ │ ├── customer-group │ │ │ ├── CustomerGroup.raml │ │ │ ├── CustomerGroupDraft.raml │ │ │ ├── CustomerGroupPagedQueryResponse.raml │ │ │ ├── CustomerGroupReference.raml │ │ │ ├── CustomerGroupResourceIdentifier.raml │ │ │ ├── CustomerGroupUpdate.raml │ │ │ ├── CustomerGroupUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── CustomerGroupChangeNameAction.raml │ │ │ │ ├── CustomerGroupSetCustomFieldAction.raml │ │ │ │ ├── CustomerGroupSetCustomTypeAction.raml │ │ │ │ └── CustomerGroupSetKeyAction.raml │ │ ├── customer-search │ │ │ ├── CustomerIndexingProgress.raml │ │ │ ├── CustomerIndexingStatus.raml │ │ │ ├── CustomerPagedSearchResponse.raml │ │ │ ├── CustomerSearchIndexingStatusResponse.raml │ │ │ ├── CustomerSearchRequest.raml │ │ │ └── CustomerSearchResult.raml │ │ ├── customer │ │ │ ├── AnonymousCartSignInMode.raml │ │ │ ├── AuthenticationMode.raml │ │ │ ├── Customer.raml │ │ │ ├── CustomerChangePassword.raml │ │ │ ├── CustomerCreateEmailToken.raml │ │ │ ├── CustomerCreatePasswordResetToken.raml │ │ │ ├── CustomerDraft.raml │ │ │ ├── CustomerEmailTokenReference.raml │ │ │ ├── CustomerEmailVerify.raml │ │ │ ├── CustomerPagedQueryResponse.raml │ │ │ ├── CustomerPasswordTokenReference.raml │ │ │ ├── CustomerReference.raml │ │ │ ├── CustomerResetPassword.raml │ │ │ ├── CustomerResourceIdentifier.raml │ │ │ ├── CustomerSignInResult.raml │ │ │ ├── CustomerSignin.raml │ │ │ ├── CustomerToken.raml │ │ │ ├── CustomerUpdate.raml │ │ │ ├── CustomerUpdateAction.raml │ │ │ ├── MyCustomerChangePassword.raml │ │ │ ├── MyCustomerEmailVerify.raml │ │ │ ├── MyCustomerResetPassword.raml │ │ │ ├── MyCustomerSignin.raml │ │ │ └── updates │ │ │ │ ├── CustomerAddAddressAction.raml │ │ │ │ ├── CustomerAddBillingAddressIdAction.raml │ │ │ │ ├── CustomerAddShippingAddressIdAction.raml │ │ │ │ ├── CustomerAddStoreAction.raml │ │ │ │ ├── CustomerChangeAddressAction.raml │ │ │ │ ├── CustomerChangeEmailAction.raml │ │ │ │ ├── CustomerRemoveAddressAction.raml │ │ │ │ ├── CustomerRemoveBillingAddressIdAction.raml │ │ │ │ ├── CustomerRemoveShippingAddressIdAction.raml │ │ │ │ ├── CustomerRemoveStoreAction.raml │ │ │ │ ├── CustomerSetAddressCustomFieldAction.raml │ │ │ │ ├── CustomerSetAddressCustomTypeAction.raml │ │ │ │ ├── CustomerSetAuthenticationModeAction.raml │ │ │ │ ├── CustomerSetCompanyNameAction.raml │ │ │ │ ├── CustomerSetCustomFieldAction.raml │ │ │ │ ├── CustomerSetCustomTypeAction.raml │ │ │ │ ├── CustomerSetCustomerGroupAction.raml │ │ │ │ ├── CustomerSetCustomerNumberAction.raml │ │ │ │ ├── CustomerSetDateOfBirthAction.raml │ │ │ │ ├── CustomerSetDefaultBillingAddressAction.raml │ │ │ │ ├── CustomerSetDefaultShippingAddressAction.raml │ │ │ │ ├── CustomerSetExternalIdAction.raml │ │ │ │ ├── CustomerSetFirstNameAction.raml │ │ │ │ ├── CustomerSetKeyAction.raml │ │ │ │ ├── CustomerSetLastNameAction.raml │ │ │ │ ├── CustomerSetLocaleAction.raml │ │ │ │ ├── CustomerSetMiddleNameAction.raml │ │ │ │ ├── CustomerSetSalutationAction.raml │ │ │ │ ├── CustomerSetStoresAction.raml │ │ │ │ ├── CustomerSetTitleAction.raml │ │ │ │ └── CustomerSetVatIdAction.raml │ │ ├── discount-code │ │ │ ├── DiscountCode.raml │ │ │ ├── DiscountCodeDraft.raml │ │ │ ├── DiscountCodePagedQueryResponse.raml │ │ │ ├── DiscountCodeReference.raml │ │ │ ├── DiscountCodeResourceIdentifier.raml │ │ │ ├── DiscountCodeUpdate.raml │ │ │ ├── DiscountCodeUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── DiscountCodeChangeCartDiscountsAction.raml │ │ │ │ ├── DiscountCodeChangeGroupsAction.raml │ │ │ │ ├── DiscountCodeChangeIsActiveAction.raml │ │ │ │ ├── DiscountCodeSetCartPredicateAction.raml │ │ │ │ ├── DiscountCodeSetCustomFieldAction.raml │ │ │ │ ├── DiscountCodeSetCustomTypeAction.raml │ │ │ │ ├── DiscountCodeSetDescriptionAction.raml │ │ │ │ ├── DiscountCodeSetKeyAction.raml │ │ │ │ ├── DiscountCodeSetMaxApplicationsAction.raml │ │ │ │ ├── DiscountCodeSetMaxApplicationsPerCustomerAction.raml │ │ │ │ ├── DiscountCodeSetNameAction.raml │ │ │ │ ├── DiscountCodeSetValidFromAction.raml │ │ │ │ ├── DiscountCodeSetValidFromAndUntilAction.raml │ │ │ │ └── DiscountCodeSetValidUntilAction.raml │ │ ├── error │ │ │ ├── AnonymousIdAlreadyInUseError.raml │ │ │ ├── AssociateMissingPermissionError.raml │ │ │ ├── AttributeDefinitionAlreadyExistsError.raml │ │ │ ├── AttributeDefinitionTypeConflictError.raml │ │ │ ├── AttributeNameDoesNotExistError.raml │ │ │ ├── AuthErrorResponse.raml │ │ │ ├── BadGatewayError.raml │ │ │ ├── ConcurrentModificationError.raml │ │ │ ├── ContentTooLargeError.raml │ │ │ ├── CountryNotConfiguredInStoreError.raml │ │ │ ├── DiscountCodeNonApplicableError.raml │ │ │ ├── DuplicateAttributeValueError.raml │ │ │ ├── DuplicateAttributeValuesError.raml │ │ │ ├── DuplicateEnumValuesError.raml │ │ │ ├── DuplicateFieldError.raml │ │ │ ├── DuplicateFieldWithConflictingResourceError.raml │ │ │ ├── DuplicatePriceKeyError.raml │ │ │ ├── DuplicatePriceScopeError.raml │ │ │ ├── DuplicateStandalonePriceScopeError.raml │ │ │ ├── DuplicateVariantValuesError.raml │ │ │ ├── EditPreviewFailedError.raml │ │ │ ├── EnumKeyAlreadyExistsError.raml │ │ │ ├── EnumKeyDoesNotExistError.raml │ │ │ ├── EnumValueIsUsedError.raml │ │ │ ├── EnumValuesMustMatchError.raml │ │ │ ├── ErrorByExtension.raml │ │ │ ├── ErrorObject.raml │ │ │ ├── ErrorResponse.raml │ │ │ ├── ExtensionBadResponseError.raml │ │ │ ├── ExtensionError.raml │ │ │ ├── ExtensionNoResponseError.raml │ │ │ ├── ExtensionPredicateEvaluationFailedError.raml │ │ │ ├── ExtensionUpdateActionsFailedError.raml │ │ │ ├── ExternalOAuthFailedError.raml │ │ │ ├── FeatureRemovedError.raml │ │ │ ├── GeneralError.raml │ │ │ ├── InsufficientScopeError.raml │ │ │ ├── InternalConstraintViolatedError.raml │ │ │ ├── InvalidCredentialsError.raml │ │ │ ├── InvalidCurrentPasswordError.raml │ │ │ ├── InvalidFieldError.raml │ │ │ ├── InvalidInputError.raml │ │ │ ├── InvalidItemShippingDetailsError.raml │ │ │ ├── InvalidJsonInputError.raml │ │ │ ├── InvalidOperationError.raml │ │ │ ├── InvalidSubjectError.raml │ │ │ ├── InvalidTokenError.raml │ │ │ ├── LanguageUsedInStoresError.raml │ │ │ ├── LockedFieldError.raml │ │ │ ├── MatchingPriceNotFoundError.raml │ │ │ ├── MaxCartDiscountsReachedError.raml │ │ │ ├── MaxResourceLimitExceededError.raml │ │ │ ├── MaxStoreReferencesReachedError.raml │ │ │ ├── MissingRoleOnChannelError.raml │ │ │ ├── MissingTaxRateForCountryError.raml │ │ │ ├── MoneyOverflowError.raml │ │ │ ├── NoMatchingProductDiscountFoundError.raml │ │ │ ├── ObjectNotFoundError.raml │ │ │ ├── OutOfStockError.raml │ │ │ ├── OverCapacityError.raml │ │ │ ├── OverlappingStandalonePriceValidityError.raml │ │ │ ├── PendingOperationError.raml │ │ │ ├── PriceChangedError.raml │ │ │ ├── ProductAssignmentMissingError.raml │ │ │ ├── ProductPresentWithDifferentVariantSelectionError.raml │ │ │ ├── ProjectNotConfiguredForLanguagesError.raml │ │ │ ├── QueryComplexityLimitExceededError.raml │ │ │ ├── QueryTimedOutError.raml │ │ │ ├── ReferenceExistsError.raml │ │ │ ├── ReferencedResourceNotFoundError.raml │ │ │ ├── RequiredFieldError.raml │ │ │ ├── ResourceNotFoundError.raml │ │ │ ├── ResourceSizeLimitExceededError.raml │ │ │ ├── SearchDeactivatedError.raml │ │ │ ├── SearchExecutionFailureError.raml │ │ │ ├── SearchFacetPathNotFoundError.raml │ │ │ ├── SearchIndexingInProgressError.raml │ │ │ ├── SemanticErrorError.raml │ │ │ ├── ShippingMethodDoesNotMatchCartError.raml │ │ │ ├── StoreCartDiscountsLimitReachedError.raml │ │ │ ├── SyntaxErrorError.raml │ │ │ ├── VariantValues.raml │ │ │ └── graphql │ │ │ │ ├── GraphQLAnonymousIdAlreadyInUseError.raml │ │ │ │ ├── GraphQLAssociateMissingPermissionError.raml │ │ │ │ ├── GraphQLAttributeDefinitionAlreadyExistsError.raml │ │ │ │ ├── GraphQLAttributeDefinitionTypeConflictError.raml │ │ │ │ ├── GraphQLAttributeNameDoesNotExistError.raml │ │ │ │ ├── GraphQLBadGatewayError.raml │ │ │ │ ├── GraphQLConcurrentModificationError.raml │ │ │ │ ├── GraphQLContentTooLargeError.raml │ │ │ │ ├── GraphQLCountryNotConfiguredInStoreError.raml │ │ │ │ ├── GraphQLDiscountCodeNonApplicableError.raml │ │ │ │ ├── GraphQLDuplicateAttributeValueError.raml │ │ │ │ ├── GraphQLDuplicateAttributeValuesError.raml │ │ │ │ ├── GraphQLDuplicateEnumValuesError.raml │ │ │ │ ├── GraphQLDuplicateFieldError.raml │ │ │ │ ├── GraphQLDuplicateFieldWithConflictingResourceError.raml │ │ │ │ ├── GraphQLDuplicatePriceKeyError.raml │ │ │ │ ├── GraphQLDuplicatePriceScopeError.raml │ │ │ │ ├── GraphQLDuplicateStandalonePriceScopeError.raml │ │ │ │ ├── GraphQLDuplicateVariantValuesError.raml │ │ │ │ ├── GraphQLEditPreviewFailedError.raml │ │ │ │ ├── GraphQLEnumKeyAlreadyExistsError.raml │ │ │ │ ├── GraphQLEnumKeyDoesNotExistError.raml │ │ │ │ ├── GraphQLEnumValueIsUsedError.raml │ │ │ │ ├── GraphQLEnumValuesMustMatchError.raml │ │ │ │ ├── GraphQLErrorObject.raml │ │ │ │ ├── GraphQLExtensionBadResponseError.raml │ │ │ │ ├── GraphQLExtensionNoResponseError.raml │ │ │ │ ├── GraphQLExtensionPredicateEvaluationFailedError.raml │ │ │ │ ├── GraphQLExtensionUpdateActionsFailedError.raml │ │ │ │ ├── GraphQLExternalOAuthFailedError.raml │ │ │ │ ├── GraphQLFeatureRemovedError.raml │ │ │ │ ├── GraphQLGeneralError.raml │ │ │ │ ├── GraphQLInsufficientScopeError.raml │ │ │ │ ├── GraphQLInternalConstraintViolatedError.raml │ │ │ │ ├── GraphQLInvalidCredentialsError.raml │ │ │ │ ├── GraphQLInvalidCurrentPasswordError.raml │ │ │ │ ├── GraphQLInvalidFieldError.raml │ │ │ │ ├── GraphQLInvalidInputError.raml │ │ │ │ ├── GraphQLInvalidItemShippingDetailsError.raml │ │ │ │ ├── GraphQLInvalidJsonInputError.raml │ │ │ │ ├── GraphQLInvalidOperationError.raml │ │ │ │ ├── GraphQLInvalidSubjectError.raml │ │ │ │ ├── GraphQLInvalidTokenError.raml │ │ │ │ ├── GraphQLLanguageUsedInStoresError.raml │ │ │ │ ├── GraphQLLockedFieldError.raml │ │ │ │ ├── GraphQLMatchingPriceNotFoundError.raml │ │ │ │ ├── GraphQLMaxCartDiscountsReachedError.raml │ │ │ │ ├── GraphQLMaxResourceLimitExceededError.raml │ │ │ │ ├── GraphQLMaxStoreReferencesReachedError.raml │ │ │ │ ├── GraphQLMissingRoleOnChannelError.raml │ │ │ │ ├── GraphQLMissingTaxRateForCountryError.raml │ │ │ │ ├── GraphQLMoneyOverflowError.raml │ │ │ │ ├── GraphQLNoMatchingProductDiscountFoundError.raml │ │ │ │ ├── GraphQLObjectNotFoundError.raml │ │ │ │ ├── GraphQLOutOfStockError.raml │ │ │ │ ├── GraphQLOverCapacityError.raml │ │ │ │ ├── GraphQLOverlappingStandalonePriceValidityError.raml │ │ │ │ ├── GraphQLPendingOperationError.raml │ │ │ │ ├── GraphQLPriceChangedError.raml │ │ │ │ ├── GraphQLProductAssignmentMissingError.raml │ │ │ │ ├── GraphQLProductPresentWithDifferentVariantSelectionError.raml │ │ │ │ ├── GraphQLProjectNotConfiguredForLanguagesError.raml │ │ │ │ ├── GraphQLQueryComplexityLimitExceededError.raml │ │ │ │ ├── GraphQLQueryTimedOutError.raml │ │ │ │ ├── GraphQLReferenceExistsError.raml │ │ │ │ ├── GraphQLReferencedResourceNotFoundError.raml │ │ │ │ ├── GraphQLRequiredFieldError.raml │ │ │ │ ├── GraphQLResourceNotFoundError.raml │ │ │ │ ├── GraphQLResourceSizeLimitExceededError.raml │ │ │ │ ├── GraphQLSearchDeactivatedError.raml │ │ │ │ ├── GraphQLSearchExecutionFailureError.raml │ │ │ │ ├── GraphQLSearchFacetPathNotFoundError.raml │ │ │ │ ├── GraphQLSearchIndexingInProgressError.raml │ │ │ │ ├── GraphQLSemanticErrorError.raml │ │ │ │ ├── GraphQLShippingMethodDoesNotMatchCartError.raml │ │ │ │ ├── GraphQLStoreCartDiscountsLimitReachedError.raml │ │ │ │ └── GraphQLSyntaxErrorError.raml │ │ ├── extension │ │ │ ├── AWSLambdaDestination.raml │ │ │ ├── AuthorizationHeaderAuthentication.raml │ │ │ ├── AzureFunctionsAuthentication.raml │ │ │ ├── Extension.raml │ │ │ ├── ExtensionAction.raml │ │ │ ├── ExtensionDestination.raml │ │ │ ├── ExtensionDraft.raml │ │ │ ├── ExtensionInput.raml │ │ │ ├── ExtensionPagedQueryResponse.raml │ │ │ ├── ExtensionResourceTypeId.raml │ │ │ ├── ExtensionTrigger.raml │ │ │ ├── ExtensionUpdate.raml │ │ │ ├── ExtensionUpdateAction.raml │ │ │ ├── GoogleCloudFunctionDestination.raml │ │ │ ├── HttpDestination.raml │ │ │ ├── HttpDestinationAuthentication.raml │ │ │ └── updates │ │ │ │ ├── ExtensionChangeDestinationAction.raml │ │ │ │ ├── ExtensionChangeTriggersAction.raml │ │ │ │ ├── ExtensionSetKeyAction.raml │ │ │ │ └── ExtensionSetTimeoutInMsAction.raml │ │ ├── graphql │ │ │ ├── GraphQLError.raml │ │ │ ├── GraphQLErrorLocation.raml │ │ │ ├── GraphQLRequest.raml │ │ │ ├── GraphQLResponse.raml │ │ │ └── GraphQLVariablesMap.raml │ │ ├── inventory │ │ │ ├── InventoryEntry.raml │ │ │ ├── InventoryEntryDraft.raml │ │ │ ├── InventoryEntryReference.raml │ │ │ ├── InventoryEntryResourceIdentifier.raml │ │ │ ├── InventoryEntryUpdate.raml │ │ │ ├── InventoryEntryUpdateAction.raml │ │ │ ├── InventoryPagedQueryResponse.raml │ │ │ └── updates │ │ │ │ ├── InventoryEntryAddQuantityAction.raml │ │ │ │ ├── InventoryEntryChangeQuantityAction.raml │ │ │ │ ├── InventoryEntryRemoveQuantityAction.raml │ │ │ │ ├── InventoryEntrySetCustomFieldAction.raml │ │ │ │ ├── InventoryEntrySetCustomTypeAction.raml │ │ │ │ ├── InventoryEntrySetExpectedDeliveryAction.raml │ │ │ │ ├── InventoryEntrySetKeyAction.raml │ │ │ │ ├── InventoryEntrySetRestockableInDaysAction.raml │ │ │ │ └── InventoryEntrySetSupplyChannelAction.raml │ │ ├── me │ │ │ ├── MyBusinessUnitAssociateDraft.raml │ │ │ ├── MyBusinessUnitDraft.raml │ │ │ ├── MyBusinessUnitUpdate.raml │ │ │ ├── MyBusinessUnitUpdateAction.raml │ │ │ ├── MyCartDraft.raml │ │ │ ├── MyCartUpdate.raml │ │ │ ├── MyCartUpdateAction.raml │ │ │ ├── MyCompanyDraft.raml │ │ │ ├── MyCustomerDraft.raml │ │ │ ├── MyCustomerUpdate.raml │ │ │ ├── MyCustomerUpdateAction.raml │ │ │ ├── MyDivisionDraft.raml │ │ │ ├── MyLineItemDraft.raml │ │ │ ├── MyOrderFromCartDraft.raml │ │ │ ├── MyOrderFromQuoteDraft.raml │ │ │ ├── MyPayment.raml │ │ │ ├── MyPaymentDraft.raml │ │ │ ├── MyPaymentPagedQueryResponse.raml │ │ │ ├── MyPaymentUpdate.raml │ │ │ ├── MyPaymentUpdateAction.raml │ │ │ ├── MyQuoteRequestDraft.raml │ │ │ ├── MyQuoteRequestUpdate.raml │ │ │ ├── MyQuoteRequestUpdateAction.raml │ │ │ ├── MyQuoteState.raml │ │ │ ├── MyQuoteUpdate.raml │ │ │ ├── MyQuoteUpdateAction.raml │ │ │ ├── MyShoppingListDraft.raml │ │ │ ├── MyShoppingListUpdate.raml │ │ │ ├── MyShoppingListUpdateAction.raml │ │ │ ├── MyTransactionDraft.raml │ │ │ ├── ReplicaMyCartDraft.raml │ │ │ └── updates │ │ │ │ ├── MyBusinessUnitAddAddressAction.raml │ │ │ │ ├── MyBusinessUnitAddBillingAddressIdAction.raml │ │ │ │ ├── MyBusinessUnitAddShippingAddressIdAction.raml │ │ │ │ ├── MyBusinessUnitChangeAddressAction.raml │ │ │ │ ├── MyBusinessUnitChangeAssociateAction.raml │ │ │ │ ├── MyBusinessUnitChangeNameAction.raml │ │ │ │ ├── MyBusinessUnitChangeParentUnitAction.raml │ │ │ │ ├── MyBusinessUnitRemoveAddressAction.raml │ │ │ │ ├── MyBusinessUnitRemoveAssociateAction.raml │ │ │ │ ├── MyBusinessUnitRemoveBillingAddressIdAction.raml │ │ │ │ ├── MyBusinessUnitRemoveShippingAddressIdAction.raml │ │ │ │ ├── MyBusinessUnitSetAddressCustomFieldAction.raml │ │ │ │ ├── MyBusinessUnitSetAddressCustomTypeAction.raml │ │ │ │ ├── MyBusinessUnitSetContactEmailAction.raml │ │ │ │ ├── MyBusinessUnitSetCustomFieldAction.raml │ │ │ │ ├── MyBusinessUnitSetCustomTypeAction.raml │ │ │ │ ├── MyBusinessUnitSetDefaultBillingAddressAction.raml │ │ │ │ ├── MyBusinessUnitSetDefaultShippingAddressAction.raml │ │ │ │ ├── MyCartAddDiscountCodeAction.raml │ │ │ │ ├── MyCartAddItemShippingAddressAction.raml │ │ │ │ ├── MyCartAddLineItemAction.raml │ │ │ │ ├── MyCartAddPaymentAction.raml │ │ │ │ ├── MyCartApplyDeltaToLineItemShippingDetailsTargetsAction.raml │ │ │ │ ├── MyCartChangeLineItemQuantityAction.raml │ │ │ │ ├── MyCartChangeLineItemsOrderAction.raml │ │ │ │ ├── MyCartChangeTaxModeAction.raml │ │ │ │ ├── MyCartRecalculateAction.raml │ │ │ │ ├── MyCartRemoveDiscountCodeAction.raml │ │ │ │ ├── MyCartRemoveItemShippingAddressAction.raml │ │ │ │ ├── MyCartRemoveLineItemAction.raml │ │ │ │ ├── MyCartRemovePaymentAction.raml │ │ │ │ ├── MyCartSetBillingAddressAction.raml │ │ │ │ ├── MyCartSetBusinessUnitAction.raml │ │ │ │ ├── MyCartSetCountryAction.raml │ │ │ │ ├── MyCartSetCustomFieldAction.raml │ │ │ │ ├── MyCartSetCustomTypeAction.raml │ │ │ │ ├── MyCartSetCustomerEmailAction.raml │ │ │ │ ├── MyCartSetDeleteDaysAfterLastModificationAction.raml │ │ │ │ ├── MyCartSetLineItemCustomFieldAction.raml │ │ │ │ ├── MyCartSetLineItemCustomTypeAction.raml │ │ │ │ ├── MyCartSetLineItemDistributionChannelAction.raml │ │ │ │ ├── MyCartSetLineItemShippingDetailsAction.raml │ │ │ │ ├── MyCartSetLineItemSupplyChannelAction.raml │ │ │ │ ├── MyCartSetLocaleAction.raml │ │ │ │ ├── MyCartSetShippingAddressAction.raml │ │ │ │ ├── MyCartSetShippingMethodAction.raml │ │ │ │ ├── MyCartUpdateItemShippingAddressAction.raml │ │ │ │ ├── MyCustomerAddAddressAction.raml │ │ │ │ ├── MyCustomerAddBillingAddressIdAction.raml │ │ │ │ ├── MyCustomerAddShippingAddressIdAction.raml │ │ │ │ ├── MyCustomerChangeAddressAction.raml │ │ │ │ ├── MyCustomerChangeEmailAction.raml │ │ │ │ ├── MyCustomerRemoveAddressAction.raml │ │ │ │ ├── MyCustomerRemoveBillingAddressIdAction.raml │ │ │ │ ├── MyCustomerRemoveShippingAddressIdAction.raml │ │ │ │ ├── MyCustomerSetCompanyNameAction.raml │ │ │ │ ├── MyCustomerSetCustomFieldAction.raml │ │ │ │ ├── MyCustomerSetCustomTypeAction.raml │ │ │ │ ├── MyCustomerSetDateOfBirthAction.raml │ │ │ │ ├── MyCustomerSetDefaultBillingAddressAction.raml │ │ │ │ ├── MyCustomerSetDefaultShippingAddressAction.raml │ │ │ │ ├── MyCustomerSetFirstNameAction.raml │ │ │ │ ├── MyCustomerSetLastNameAction.raml │ │ │ │ ├── MyCustomerSetLocaleAction.raml │ │ │ │ ├── MyCustomerSetMiddleNameAction.raml │ │ │ │ ├── MyCustomerSetSalutationAction.raml │ │ │ │ ├── MyCustomerSetTitleAction.raml │ │ │ │ ├── MyCustomerSetVatIdAction.raml │ │ │ │ ├── MyPaymentAddTransactionAction.raml │ │ │ │ ├── MyPaymentChangeAmountPlannedAction.raml │ │ │ │ ├── MyPaymentSetCustomFieldAction.raml │ │ │ │ ├── MyPaymentSetMethodInfoInterfaceAction.raml │ │ │ │ ├── MyPaymentSetMethodInfoMethodAction.raml │ │ │ │ ├── MyPaymentSetMethodInfoNameAction.raml │ │ │ │ ├── MyPaymentSetTransactionCustomFieldAction.raml │ │ │ │ ├── MyQuoteChangeMyQuoteStateAction.raml │ │ │ │ ├── MyQuoteRequestCancelAction.raml │ │ │ │ ├── MyShoppingListAddLineItemAction.raml │ │ │ │ ├── MyShoppingListAddTextLineItemAction.raml │ │ │ │ ├── MyShoppingListChangeLineItemQuantityAction.raml │ │ │ │ ├── MyShoppingListChangeLineItemsOrderAction.raml │ │ │ │ ├── MyShoppingListChangeNameAction.raml │ │ │ │ ├── MyShoppingListChangeTextLineItemNameAction.raml │ │ │ │ ├── MyShoppingListChangeTextLineItemQuantityAction.raml │ │ │ │ ├── MyShoppingListChangeTextLineItemsOrderAction.raml │ │ │ │ ├── MyShoppingListRemoveLineItemAction.raml │ │ │ │ ├── MyShoppingListRemoveTextLineItemAction.raml │ │ │ │ ├── MyShoppingListSetCustomFieldAction.raml │ │ │ │ ├── MyShoppingListSetCustomTypeAction.raml │ │ │ │ ├── MyShoppingListSetDeleteDaysAfterLastModificationAction.raml │ │ │ │ ├── MyShoppingListSetDescriptionAction.raml │ │ │ │ ├── MyShoppingListSetLineItemCustomFieldAction.raml │ │ │ │ ├── MyShoppingListSetLineItemCustomTypeAction.raml │ │ │ │ ├── MyShoppingListSetTextLineItemCustomFieldAction.raml │ │ │ │ ├── MyShoppingListSetTextLineItemCustomTypeAction.raml │ │ │ │ └── MyShoppingListSetTextLineItemDescriptionAction.raml │ │ ├── message │ │ │ ├── ApprovalFlowApprovedMessage.raml │ │ │ ├── ApprovalFlowCompletedMessage.raml │ │ │ ├── ApprovalFlowCreatedMessage.raml │ │ │ ├── ApprovalFlowRejectedMessage.raml │ │ │ ├── ApprovalRuleApproversSetMessage.raml │ │ │ ├── ApprovalRuleCreatedMessage.raml │ │ │ ├── ApprovalRuleDescriptionSetMessage.raml │ │ │ ├── ApprovalRuleKeySetMessage.raml │ │ │ ├── ApprovalRuleNameSetMessage.raml │ │ │ ├── ApprovalRulePredicateSetMessage.raml │ │ │ ├── ApprovalRuleRequestersSetMessage.raml │ │ │ ├── ApprovalRuleStatusSetMessage.raml │ │ │ ├── AssociateRoleBuyerAssignableChangedMessage.raml │ │ │ ├── AssociateRoleCreatedMessage.raml │ │ │ ├── AssociateRoleDeletedMessage.raml │ │ │ ├── AssociateRoleNameChangedMessage.raml │ │ │ ├── AssociateRolePermissionAddedMessage.raml │ │ │ ├── AssociateRolePermissionRemovedMessage.raml │ │ │ ├── AssociateRolePermissionsSetMessage.raml │ │ │ ├── BusinessUnitAddressAddedMessage.raml │ │ │ ├── BusinessUnitAddressChangedMessage.raml │ │ │ ├── BusinessUnitAddressCustomFieldAddedMessage.raml │ │ │ ├── BusinessUnitAddressCustomFieldChangedMessage.raml │ │ │ ├── BusinessUnitAddressCustomFieldRemovedMessage.raml │ │ │ ├── BusinessUnitAddressCustomTypeRemovedMessage.raml │ │ │ ├── BusinessUnitAddressCustomTypeSetMessage.raml │ │ │ ├── BusinessUnitAddressRemovedMessage.raml │ │ │ ├── BusinessUnitApprovalRuleModeChangedMessage.raml │ │ │ ├── BusinessUnitAssociateAddedMessage.raml │ │ │ ├── BusinessUnitAssociateChangedMessage.raml │ │ │ ├── BusinessUnitAssociateModeChangedMessage.raml │ │ │ ├── BusinessUnitAssociateRemovedMessage.raml │ │ │ ├── BusinessUnitAssociatesSetMessage.raml │ │ │ ├── BusinessUnitBillingAddressAddedMessage.raml │ │ │ ├── BusinessUnitBillingAddressRemovedMessage.raml │ │ │ ├── BusinessUnitContactEmailSetMessage.raml │ │ │ ├── BusinessUnitCreatedMessage.raml │ │ │ ├── BusinessUnitCustomFieldAddedMessage.raml │ │ │ ├── BusinessUnitCustomFieldChangedMessage.raml │ │ │ ├── BusinessUnitCustomFieldRemovedMessage.raml │ │ │ ├── BusinessUnitCustomTypeRemovedMessage.raml │ │ │ ├── BusinessUnitCustomTypeSetMessage.raml │ │ │ ├── BusinessUnitDefaultBillingAddressSetMessage.raml │ │ │ ├── BusinessUnitDefaultShippingAddressSetMessage.raml │ │ │ ├── BusinessUnitDeletedMessage.raml │ │ │ ├── BusinessUnitNameChangedMessage.raml │ │ │ ├── BusinessUnitParentChangedMessage.raml │ │ │ ├── BusinessUnitShippingAddressAddedMessage.raml │ │ │ ├── BusinessUnitShippingAddressRemovedMessage.raml │ │ │ ├── BusinessUnitStatusChangedMessage.raml │ │ │ ├── BusinessUnitStoreAddedMessage.raml │ │ │ ├── BusinessUnitStoreModeChangedMessage.raml │ │ │ ├── BusinessUnitStoreRemovedMessage.raml │ │ │ ├── BusinessUnitStoresSetMessage.raml │ │ │ ├── CartDiscountCreatedMessage.raml │ │ │ ├── CartDiscountDeletedMessage.raml │ │ │ ├── CartDiscountStoreAddedMessage.raml │ │ │ ├── CartDiscountStoreRemovedMessage.raml │ │ │ ├── CartDiscountStoresSetMessage.raml │ │ │ ├── CategoryCreatedMessage.raml │ │ │ ├── CategorySlugChangedMessage.raml │ │ │ ├── ContainerAndKey.raml │ │ │ ├── CustomLineItemStateTransitionMessage.raml │ │ │ ├── CustomerAddressAddedMessage.raml │ │ │ ├── CustomerAddressChangedMessage.raml │ │ │ ├── CustomerAddressCustomFieldAddedMessage.raml │ │ │ ├── CustomerAddressCustomFieldChangedMessage.raml │ │ │ ├── CustomerAddressCustomFieldRemovedMessage.raml │ │ │ ├── CustomerAddressCustomTypeRemovedMessage.raml │ │ │ ├── CustomerAddressCustomTypeSetMessage.raml │ │ │ ├── CustomerAddressRemovedMessage.raml │ │ │ ├── CustomerCompanyNameSetMessage.raml │ │ │ ├── CustomerCreatedMessage.raml │ │ │ ├── CustomerCustomFieldAddedMessage.raml │ │ │ ├── CustomerCustomFieldChangedMessage.raml │ │ │ ├── CustomerCustomFieldRemovedMessage.raml │ │ │ ├── CustomerCustomTypeRemovedMessage.raml │ │ │ ├── CustomerCustomTypeSetMessage.raml │ │ │ ├── CustomerDateOfBirthSetMessage.raml │ │ │ ├── CustomerDeletedMessage.raml │ │ │ ├── CustomerEmailChangedMessage.raml │ │ │ ├── CustomerEmailTokenCreatedMessage.raml │ │ │ ├── CustomerEmailVerifiedMessage.raml │ │ │ ├── CustomerFirstNameSetMessage.raml │ │ │ ├── CustomerGroupCustomFieldAddedMessage.raml │ │ │ ├── CustomerGroupCustomFieldChangedMessage.raml │ │ │ ├── CustomerGroupCustomFieldRemovedMessage.raml │ │ │ ├── CustomerGroupCustomTypeRemovedMessage.raml │ │ │ ├── CustomerGroupCustomTypeSetMessage.raml │ │ │ ├── CustomerGroupSetMessage.raml │ │ │ ├── CustomerLastNameSetMessage.raml │ │ │ ├── CustomerPasswordTokenCreatedMessage.raml │ │ │ ├── CustomerPasswordUpdatedMessage.raml │ │ │ ├── CustomerTitleSetMessage.raml │ │ │ ├── DeliveryAddedMessage.raml │ │ │ ├── DeliveryAddressSetMessage.raml │ │ │ ├── DeliveryItemsUpdatedMessage.raml │ │ │ ├── DeliveryRemovedMessage.raml │ │ │ ├── DiscountCodeCreatedMessage.raml │ │ │ ├── DiscountCodeDeletedMessage.raml │ │ │ ├── DiscountCodeKeySetMessage.raml │ │ │ ├── InventoryEntryCreatedMessage.raml │ │ │ ├── InventoryEntryDeletedMessage.raml │ │ │ ├── InventoryEntryQuantitySetMessage.raml │ │ │ ├── LineItemStateTransitionMessage.raml │ │ │ ├── Message.raml │ │ │ ├── MessagePagedQueryResponse.raml │ │ │ ├── MessagesConfiguration.raml │ │ │ ├── MessagesConfigurationDraft.raml │ │ │ ├── OrderBillingAddressSetMessage.raml │ │ │ ├── OrderCreatedMessage.raml │ │ │ ├── OrderCustomFieldAddedMessage.raml │ │ │ ├── OrderCustomFieldChangedMessage.raml │ │ │ ├── OrderCustomFieldRemovedMessage.raml │ │ │ ├── OrderCustomLineItemAddedMessage.raml │ │ │ ├── OrderCustomLineItemDiscountSetMessage.raml │ │ │ ├── OrderCustomLineItemQuantityChangedMessage.raml │ │ │ ├── OrderCustomLineItemRemovedMessage.raml │ │ │ ├── OrderCustomTypeRemovedMessage.raml │ │ │ ├── OrderCustomTypeSetMessage.raml │ │ │ ├── OrderCustomerEmailSetMessage.raml │ │ │ ├── OrderCustomerGroupSetMessage.raml │ │ │ ├── OrderCustomerSetMessage.raml │ │ │ ├── OrderDeletedMessage.raml │ │ │ ├── OrderDiscountCodeAddedMessage.raml │ │ │ ├── OrderDiscountCodeRemovedMessage.raml │ │ │ ├── OrderDiscountCodeStateSetMessage.raml │ │ │ ├── OrderEditAppliedMessage.raml │ │ │ ├── OrderImportedMessage.raml │ │ │ ├── OrderLineItemAddedMessage.raml │ │ │ ├── OrderLineItemDiscountSetMessage.raml │ │ │ ├── OrderLineItemDistributionChannelSetMessage.raml │ │ │ ├── OrderLineItemRemovedMessage.raml │ │ │ ├── OrderMessage.raml │ │ │ ├── OrderPaymentAddedMessage.raml │ │ │ ├── OrderPaymentStateChangedMessage.raml │ │ │ ├── OrderPurchaseOrderNumberSetMessage.raml │ │ │ ├── OrderReturnShipmentStateChangedMessage.raml │ │ │ ├── OrderShipmentStateChangedMessage.raml │ │ │ ├── OrderShippingAddressSetMessage.raml │ │ │ ├── OrderShippingInfoSetMessage.raml │ │ │ ├── OrderShippingRateInputSetMessage.raml │ │ │ ├── OrderStateChangedMessage.raml │ │ │ ├── OrderStateTransitionMessage.raml │ │ │ ├── OrderStoreSetMessage.raml │ │ │ ├── ParcelAddedToDeliveryMessage.raml │ │ │ ├── ParcelItemsUpdatedMessage.raml │ │ │ ├── ParcelMeasurementsUpdatedMessage.raml │ │ │ ├── ParcelRemovedFromDeliveryMessage.raml │ │ │ ├── ParcelTrackingDataUpdatedMessage.raml │ │ │ ├── PaymentCreatedMessage.raml │ │ │ ├── PaymentInteractionAddedMessage.raml │ │ │ ├── PaymentStatusInterfaceCodeSetMessage.raml │ │ │ ├── PaymentStatusStateTransitionMessage.raml │ │ │ ├── PaymentTransactionAddedMessage.raml │ │ │ ├── PaymentTransactionStateChangedMessage.raml │ │ │ ├── ProductAddedToCategoryMessage.raml │ │ │ ├── ProductCreatedMessage.raml │ │ │ ├── ProductDeletedMessage.raml │ │ │ ├── ProductImageAddedMessage.raml │ │ │ ├── ProductPriceAddedMessage.raml │ │ │ ├── ProductPriceChangedMessage.raml │ │ │ ├── ProductPriceCustomFieldAddedMessage.raml │ │ │ ├── ProductPriceCustomFieldChangedMessage.raml │ │ │ ├── ProductPriceCustomFieldRemovedMessage.raml │ │ │ ├── ProductPriceCustomFieldsRemovedMessage.raml │ │ │ ├── ProductPriceCustomFieldsSetMessage.raml │ │ │ ├── ProductPriceDiscountsSetMessage.raml │ │ │ ├── ProductPriceDiscountsSetUpdatedPrice.raml │ │ │ ├── ProductPriceExternalDiscountSetMessage.raml │ │ │ ├── ProductPriceKeySetMessage.raml │ │ │ ├── ProductPriceModeSetMessage.raml │ │ │ ├── ProductPriceRemovedMessage.raml │ │ │ ├── ProductPricesSetMessage.raml │ │ │ ├── ProductPublishedMessage.raml │ │ │ ├── ProductRemovedFromCategoryMessage.raml │ │ │ ├── ProductRevertedStagedChangesMessage.raml │ │ │ ├── ProductSelectionCreatedMessage.raml │ │ │ ├── ProductSelectionDeletedMessage.raml │ │ │ ├── ProductSelectionProductAddedMessage.raml │ │ │ ├── ProductSelectionProductExcludedMessage.raml │ │ │ ├── ProductSelectionProductRemovedMessage.raml │ │ │ ├── ProductSelectionVariantExclusionChangedMessage.raml │ │ │ ├── ProductSelectionVariantSelectionChangedMessage.raml │ │ │ ├── ProductSlugChangedMessage.raml │ │ │ ├── ProductStateTransitionMessage.raml │ │ │ ├── ProductTailoringCreatedMessage.raml │ │ │ ├── ProductTailoringDeletedMessage.raml │ │ │ ├── ProductTailoringDescriptionSetMessage.raml │ │ │ ├── ProductTailoringImageAddedMessage.raml │ │ │ ├── ProductTailoringImagesSetMessage.raml │ │ │ ├── ProductTailoringNameSetMessage.raml │ │ │ ├── ProductTailoringPublishedMessage.raml │ │ │ ├── ProductTailoringSlugSetMessage.raml │ │ │ ├── ProductTailoringUnpublishedMessage.raml │ │ │ ├── ProductUnpublishedMessage.raml │ │ │ ├── ProductVariantAddedMessage.raml │ │ │ ├── ProductVariantDeletedMessage.raml │ │ │ ├── ProductVariantTailoringAddedMessage.raml │ │ │ ├── ProductVariantTailoringRemovedMessage.raml │ │ │ ├── QuoteCreatedMessage.raml │ │ │ ├── QuoteCustomerChangedMessage.raml │ │ │ ├── QuoteDeletedMessage.raml │ │ │ ├── QuoteRenegotiationRequestedMessage.raml │ │ │ ├── QuoteRequestCreatedMessage.raml │ │ │ ├── QuoteRequestCustomerChangedMessage.raml │ │ │ ├── QuoteRequestDeletedMessage.raml │ │ │ ├── QuoteRequestStateChangedMessage.raml │ │ │ ├── QuoteRequestStateTransitionMessage.raml │ │ │ ├── QuoteStateChangedMessage.raml │ │ │ ├── QuoteStateTransitionMessage.raml │ │ │ ├── ReturnInfoAddedMessage.raml │ │ │ ├── ReturnInfoSetMessage.raml │ │ │ ├── ReviewCreatedMessage.raml │ │ │ ├── ReviewRatingSetMessage.raml │ │ │ ├── ReviewStateTransitionMessage.raml │ │ │ ├── StagedQuoteCreatedMessage.raml │ │ │ ├── StagedQuoteDeletedMessage.raml │ │ │ ├── StagedQuoteSellerCommentSetMessage.raml │ │ │ ├── StagedQuoteStateChangedMessage.raml │ │ │ ├── StagedQuoteStateTransitionMessage.raml │ │ │ ├── StagedQuoteValidToSetMessage.raml │ │ │ ├── StandalonePriceActiveChangedMessage.raml │ │ │ ├── StandalonePriceCreatedMessage.raml │ │ │ ├── StandalonePriceDeletedMessage.raml │ │ │ ├── StandalonePriceDiscountSetMessage.raml │ │ │ ├── StandalonePriceExternalDiscountSetMessage.raml │ │ │ ├── StandalonePriceKeySetMessage.raml │ │ │ ├── StandalonePriceStagedChangesAppliedMessage.raml │ │ │ ├── StandalonePriceStagedChangesRemovedMessage.raml │ │ │ ├── StandalonePriceTierAddedMessage.raml │ │ │ ├── StandalonePriceTierRemovedMessage.raml │ │ │ ├── StandalonePriceTiersSetMessage.raml │ │ │ ├── StandalonePriceValidFromAndUntilSetMessage.raml │ │ │ ├── StandalonePriceValidFromSetMessage.raml │ │ │ ├── StandalonePriceValidUntilSetMessage.raml │ │ │ ├── StandalonePriceValueChangedMessage.raml │ │ │ ├── StoreCountriesChangedMessage.raml │ │ │ ├── StoreCreatedMessage.raml │ │ │ ├── StoreDeletedMessage.raml │ │ │ ├── StoreDistributionChannelsChangedMessage.raml │ │ │ ├── StoreLanguagesChangedMessage.raml │ │ │ ├── StoreNameSetMessage.raml │ │ │ ├── StoreProductSelectionsChangedMessage.raml │ │ │ ├── StoreSupplyChannelsChangedMessage.raml │ │ │ ├── UserProvidedIdentifiers.raml │ │ │ └── payload │ │ │ │ ├── ApprovalFlowApprovedMessagePayload.raml │ │ │ │ ├── ApprovalFlowCompletedMessagePayload.raml │ │ │ │ ├── ApprovalFlowCreatedMessagePayload.raml │ │ │ │ ├── ApprovalFlowRejectedMessagePayload.raml │ │ │ │ ├── ApprovalRuleApproversSetMessagePayload.raml │ │ │ │ ├── ApprovalRuleCreatedMessagePayload.raml │ │ │ │ ├── ApprovalRuleDescriptionSetMessagePayload.raml │ │ │ │ ├── ApprovalRuleKeySetMessagePayload.raml │ │ │ │ ├── ApprovalRuleNameSetMessagePayload.raml │ │ │ │ ├── ApprovalRulePredicateSetMessagePayload.raml │ │ │ │ ├── ApprovalRuleRequestersSetMessagePayload.raml │ │ │ │ ├── ApprovalRuleStatusSetMessagePayload.raml │ │ │ │ ├── AssociateRoleBuyerAssignableChangedMessagePayload.raml │ │ │ │ ├── AssociateRoleCreatedMessagePayload.raml │ │ │ │ ├── AssociateRoleDeletedMessagePayload.raml │ │ │ │ ├── AssociateRoleNameChangedMessagePayload.raml │ │ │ │ ├── AssociateRolePermissionAddedMessagePayload.raml │ │ │ │ ├── AssociateRolePermissionRemovedMessagePayload.raml │ │ │ │ ├── AssociateRolePermissionsSetMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressCustomFieldAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressCustomFieldChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressCustomTypeRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressCustomTypeSetMessagePayload.raml │ │ │ │ ├── BusinessUnitAddressRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitApprovalRuleModeChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitAssociateAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitAssociateChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitAssociateModeChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitAssociateRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitAssociatesSetMessagePayload.raml │ │ │ │ ├── BusinessUnitBillingAddressAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitBillingAddressRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitContactEmailSetMessagePayload.raml │ │ │ │ ├── BusinessUnitCreatedMessagePayload.raml │ │ │ │ ├── BusinessUnitCustomFieldAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitCustomFieldChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitCustomTypeRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitCustomTypeSetMessagePayload.raml │ │ │ │ ├── BusinessUnitDefaultBillingAddressSetMessagePayload.raml │ │ │ │ ├── BusinessUnitDefaultShippingAddressSetMessagePayload.raml │ │ │ │ ├── BusinessUnitDeletedMessagePayload.raml │ │ │ │ ├── BusinessUnitNameChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitParentChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitShippingAddressAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitShippingAddressRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitStatusChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitStoreAddedMessagePayload.raml │ │ │ │ ├── BusinessUnitStoreModeChangedMessagePayload.raml │ │ │ │ ├── BusinessUnitStoreRemovedMessagePayload.raml │ │ │ │ ├── BusinessUnitStoresSetMessagePayload.raml │ │ │ │ ├── CartDiscountCreatedMessagePayload.raml │ │ │ │ ├── CartDiscountDeletedMessagePayload.raml │ │ │ │ ├── CartDiscountStoreAddedMessagePayload.raml │ │ │ │ ├── CartDiscountStoreRemovedMessagePayload.raml │ │ │ │ ├── CartDiscountStoresSetMessagePayload.raml │ │ │ │ ├── CategoryCreatedMessagePayload.raml │ │ │ │ ├── CategorySlugChangedMessagePayload.raml │ │ │ │ ├── CustomLineItemStateTransitionMessagePayload.raml │ │ │ │ ├── CustomerAddressAddedMessagePayload.raml │ │ │ │ ├── CustomerAddressChangedMessagePayload.raml │ │ │ │ ├── CustomerAddressCustomFieldAddedMessagePayload.raml │ │ │ │ ├── CustomerAddressCustomFieldChangedMessagePayload.raml │ │ │ │ ├── CustomerAddressCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── CustomerAddressCustomTypeRemovedMessagePayload.raml │ │ │ │ ├── CustomerAddressCustomTypeSetMessagePayload.raml │ │ │ │ ├── CustomerAddressRemovedMessagePayload.raml │ │ │ │ ├── CustomerCompanyNameSetMessagePayload.raml │ │ │ │ ├── CustomerCreatedMessagePayload.raml │ │ │ │ ├── CustomerCustomFieldAddedMessagePayload.raml │ │ │ │ ├── CustomerCustomFieldChangedMessagePayload.raml │ │ │ │ ├── CustomerCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── CustomerCustomTypeRemovedMessagePayload.raml │ │ │ │ ├── CustomerCustomTypeSetMessagePayload.raml │ │ │ │ ├── CustomerDateOfBirthSetMessagePayload.raml │ │ │ │ ├── CustomerDeletedMessagePayload.raml │ │ │ │ ├── CustomerEmailChangedMessagePayload.raml │ │ │ │ ├── CustomerEmailTokenCreatedMessagePayload.raml │ │ │ │ ├── CustomerEmailVerifiedMessagePayload.raml │ │ │ │ ├── CustomerFirstNameSetMessagePayload.raml │ │ │ │ ├── CustomerGroupCustomFieldAddedMessagePayload.raml │ │ │ │ ├── CustomerGroupCustomFieldChangedMessagePayload.raml │ │ │ │ ├── CustomerGroupCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── CustomerGroupCustomTypeRemovedMessagePayload.raml │ │ │ │ ├── CustomerGroupCustomTypeSetMessagePayload.raml │ │ │ │ ├── CustomerGroupSetMessagePayload.raml │ │ │ │ ├── CustomerLastNameSetMessagePayload.raml │ │ │ │ ├── CustomerPasswordTokenCreatedMessagePayload.raml │ │ │ │ ├── CustomerPasswordUpdatedMessagePayload.raml │ │ │ │ ├── CustomerTitleSetMessagePayload.raml │ │ │ │ ├── DeliveryAddedMessagePayload.raml │ │ │ │ ├── DeliveryAddressSetMessagePayload.raml │ │ │ │ ├── DeliveryItemsUpdatedMessagePayload.raml │ │ │ │ ├── DeliveryRemovedMessagePayload.raml │ │ │ │ ├── DiscountCodeCreatedMessagePayload.raml │ │ │ │ ├── DiscountCodeDeletedMessagePayload.raml │ │ │ │ ├── DiscountCodeKeySetMessagePayload.raml │ │ │ │ ├── InventoryEntryCreatedMessagePayload.raml │ │ │ │ ├── InventoryEntryDeletedMessagePayload.raml │ │ │ │ ├── InventoryEntryQuantitySetMessagePayload.raml │ │ │ │ ├── LineItemStateTransitionMessagePayload.raml │ │ │ │ ├── MessagePayload.raml │ │ │ │ ├── OrderBillingAddressSetMessagePayload.raml │ │ │ │ ├── OrderCreatedMessagePayload.raml │ │ │ │ ├── OrderCustomFieldAddedMessagePayload.raml │ │ │ │ ├── OrderCustomFieldChangedMessagePayload.raml │ │ │ │ ├── OrderCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── OrderCustomLineItemAddedMessagePayload.raml │ │ │ │ ├── OrderCustomLineItemDiscountSetMessagePayload.raml │ │ │ │ ├── OrderCustomLineItemQuantityChangedMessagePayload.raml │ │ │ │ ├── OrderCustomLineItemRemovedMessagePayload.raml │ │ │ │ ├── OrderCustomTypeRemovedMessagePayload.raml │ │ │ │ ├── OrderCustomTypeSetMessagePayload.raml │ │ │ │ ├── OrderCustomerEmailSetMessagePayload.raml │ │ │ │ ├── OrderCustomerGroupSetMessagePayload.raml │ │ │ │ ├── OrderCustomerSetMessagePayload.raml │ │ │ │ ├── OrderDeletedMessagePayload.raml │ │ │ │ ├── OrderDiscountCodeAddedMessagePayload.raml │ │ │ │ ├── OrderDiscountCodeRemovedMessagePayload.raml │ │ │ │ ├── OrderDiscountCodeStateSetMessagePayload.raml │ │ │ │ ├── OrderEditAppliedMessagePayload.raml │ │ │ │ ├── OrderImportedMessagePayload.raml │ │ │ │ ├── OrderLineItemAddedMessagePayload.raml │ │ │ │ ├── OrderLineItemDiscountSetMessagePayload.raml │ │ │ │ ├── OrderLineItemDistributionChannelSetMessagePayload.raml │ │ │ │ ├── OrderLineItemRemovedMessagePayload.raml │ │ │ │ ├── OrderMessagePayload.raml │ │ │ │ ├── OrderPaymentAddedMessagePayload.raml │ │ │ │ ├── OrderPaymentStateChangedMessagePayload.raml │ │ │ │ ├── OrderPurchaseOrderNumberSetMessagePayload.raml │ │ │ │ ├── OrderReturnShipmentStateChangedMessagePayload.raml │ │ │ │ ├── OrderShipmentStateChangedMessagePayload.raml │ │ │ │ ├── OrderShippingAddressSetMessagePayload.raml │ │ │ │ ├── OrderShippingInfoSetMessagePayload.raml │ │ │ │ ├── OrderShippingRateInputSetMessagePayload.raml │ │ │ │ ├── OrderStateChangedMessagePayload.raml │ │ │ │ ├── OrderStateTransitionMessagePayload.raml │ │ │ │ ├── OrderStoreSetMessagePayload.raml │ │ │ │ ├── ParcelAddedToDeliveryMessagePayload.raml │ │ │ │ ├── ParcelItemsUpdatedMessagePayload.raml │ │ │ │ ├── ParcelMeasurementsUpdatedMessagePayload.raml │ │ │ │ ├── ParcelRemovedFromDeliveryMessagePayload.raml │ │ │ │ ├── ParcelTrackingDataUpdatedMessagePayload.raml │ │ │ │ ├── PaymentCreatedMessagePayload.raml │ │ │ │ ├── PaymentInteractionAddedMessagePayload.raml │ │ │ │ ├── PaymentStatusInterfaceCodeSetMessagePayload.raml │ │ │ │ ├── PaymentStatusStateTransitionMessagePayload.raml │ │ │ │ ├── PaymentTransactionAddedMessagePayload.raml │ │ │ │ ├── PaymentTransactionStateChangedMessagePayload.raml │ │ │ │ ├── ProductAddedToCategoryMessagePayload.raml │ │ │ │ ├── ProductCreatedMessagePayload.raml │ │ │ │ ├── ProductDeletedMessagePayload.raml │ │ │ │ ├── ProductImageAddedMessagePayload.raml │ │ │ │ ├── ProductPriceAddedMessagePayload.raml │ │ │ │ ├── ProductPriceChangedMessagePayload.raml │ │ │ │ ├── ProductPriceCustomFieldAddedMessagePayload.raml │ │ │ │ ├── ProductPriceCustomFieldChangedMessagePayload.raml │ │ │ │ ├── ProductPriceCustomFieldRemovedMessagePayload.raml │ │ │ │ ├── ProductPriceCustomFieldsRemovedMessagePayload.raml │ │ │ │ ├── ProductPriceCustomFieldsSetMessagePayload.raml │ │ │ │ ├── ProductPriceDiscountsSetMessagePayload.raml │ │ │ │ ├── ProductPriceExternalDiscountSetMessagePayload.raml │ │ │ │ ├── ProductPriceKeySetMessagePayload.raml │ │ │ │ ├── ProductPriceModeSetMessagePayload.raml │ │ │ │ ├── ProductPriceRemovedMessagePayload.raml │ │ │ │ ├── ProductPricesSetMessagePayload.raml │ │ │ │ ├── ProductPublishedMessagePayload.raml │ │ │ │ ├── ProductRemovedFromCategoryMessagePayload.raml │ │ │ │ ├── ProductRevertedStagedChangesMessagePayload.raml │ │ │ │ ├── ProductSelectionCreatedMessagePayload.raml │ │ │ │ ├── ProductSelectionDeletedMessagePayload.raml │ │ │ │ ├── ProductSelectionProductAddedMessagePayload.raml │ │ │ │ ├── ProductSelectionProductExcludedMessagePayload.raml │ │ │ │ ├── ProductSelectionProductRemovedMessagePayload.raml │ │ │ │ ├── ProductSelectionVariantExclusionChangedMessagePayload.raml │ │ │ │ ├── ProductSelectionVariantSelectionChangedMessagePayload.raml │ │ │ │ ├── ProductSlugChangedMessagePayload.raml │ │ │ │ ├── ProductStateTransitionMessagePayload.raml │ │ │ │ ├── ProductTailoringCreatedMessagePayload.raml │ │ │ │ ├── ProductTailoringDeletedMessagePayload.raml │ │ │ │ ├── ProductTailoringDescriptionSetMessagePayload.raml │ │ │ │ ├── ProductTailoringImageAddedMessagePayload.raml │ │ │ │ ├── ProductTailoringImagesSetMessagePayload.raml │ │ │ │ ├── ProductTailoringNameSetMessagePayload.raml │ │ │ │ ├── ProductTailoringPublishedMessagePayload.raml │ │ │ │ ├── ProductTailoringSlugSetMessagePayload.raml │ │ │ │ ├── ProductTailoringUnpublishedMessagePayload.raml │ │ │ │ ├── ProductUnpublishedMessagePayload.raml │ │ │ │ ├── ProductVariantAddedMessagePayload.raml │ │ │ │ ├── ProductVariantDeletedMessagePayload.raml │ │ │ │ ├── ProductVariantTailoringAddedMessagePayload.raml │ │ │ │ ├── ProductVariantTailoringRemovedMessagePayload.raml │ │ │ │ ├── QuoteCreatedMessagePayload.raml │ │ │ │ ├── QuoteCustomerChangedMessagePayload.raml │ │ │ │ ├── QuoteDeletedMessagePayload.raml │ │ │ │ ├── QuoteRenegotiationRequestedMessagePayload.raml │ │ │ │ ├── QuoteRequestCreatedMessagePayload.raml │ │ │ │ ├── QuoteRequestCustomerChangedMessagePayload.raml │ │ │ │ ├── QuoteRequestDeletedMessagePayload.raml │ │ │ │ ├── QuoteRequestStateChangedMessagePayload.raml │ │ │ │ ├── QuoteRequestStateTransitionMessagePayload.raml │ │ │ │ ├── QuoteStateChangedMessagePayload.raml │ │ │ │ ├── QuoteStateTransitionMessagePayload.raml │ │ │ │ ├── ReturnInfoAddedMessagePayload.raml │ │ │ │ ├── ReturnInfoSetMessagePayload.raml │ │ │ │ ├── ReviewCreatedMessagePayload.raml │ │ │ │ ├── ReviewRatingSetMessagePayload.raml │ │ │ │ ├── ReviewStateTransitionMessagePayload.raml │ │ │ │ ├── ShoppingListStoreSetMessagePayload.raml │ │ │ │ ├── StagedQuoteCreatedMessagePayload.raml │ │ │ │ ├── StagedQuoteDeletedMessagePayload.raml │ │ │ │ ├── StagedQuoteSellerCommentSetMessagePayload.raml │ │ │ │ ├── StagedQuoteStateChangedMessagePayload.raml │ │ │ │ ├── StagedQuoteStateTransitionMessagePayload.raml │ │ │ │ ├── StagedQuoteValidToSetMessagePayload.raml │ │ │ │ ├── StandalonePriceActiveChangedMessagePayload.raml │ │ │ │ ├── StandalonePriceCreatedMessagePayload.raml │ │ │ │ ├── StandalonePriceDeletedMessagePayload.raml │ │ │ │ ├── StandalonePriceDiscountSetMessagePayload.raml │ │ │ │ ├── StandalonePriceExternalDiscountSetMessagePayload.raml │ │ │ │ ├── StandalonePriceKeySetMessagePayload.raml │ │ │ │ ├── StandalonePriceStagedChangesAppliedMessagePayload.raml │ │ │ │ ├── StandalonePriceStagedChangesRemovedMessagePayload.raml │ │ │ │ ├── StandalonePriceTierAddedMessagePayload.raml │ │ │ │ ├── StandalonePriceTierRemovedMessagePayload.raml │ │ │ │ ├── StandalonePriceTiersSetMessagePayload.raml │ │ │ │ ├── StandalonePriceValidFromAndUntilSetMessagePayload.raml │ │ │ │ ├── StandalonePriceValidFromSetMessagePayload.raml │ │ │ │ ├── StandalonePriceValidUntilSetMessagePayload.raml │ │ │ │ ├── StandalonePriceValueChangedMessagePayload.raml │ │ │ │ ├── StoreCountriesChangedMessagePayload.raml │ │ │ │ ├── StoreCreatedMessagePayload.raml │ │ │ │ ├── StoreDeletedMessagePayload.raml │ │ │ │ ├── StoreDistributionChannelsChangedMessagePayload.raml │ │ │ │ ├── StoreLanguagesChangedMessagePayload.raml │ │ │ │ ├── StoreNameSetMessagePayload.raml │ │ │ │ ├── StoreProductSelectionsChangedMessagePayload.raml │ │ │ │ └── StoreSupplyChannelsChangedMessagePayload.raml │ │ ├── order-edit │ │ │ ├── OrderEdit.raml │ │ │ ├── OrderEditApplied.raml │ │ │ ├── OrderEditApply.raml │ │ │ ├── OrderEditDraft.raml │ │ │ ├── OrderEditNotProcessed.raml │ │ │ ├── OrderEditPagedQueryResponse.raml │ │ │ ├── OrderEditPreviewFailure.raml │ │ │ ├── OrderEditPreviewSuccess.raml │ │ │ ├── OrderEditReference.raml │ │ │ ├── OrderEditResourceIdentifier.raml │ │ │ ├── OrderEditResult.raml │ │ │ ├── OrderEditUpdate.raml │ │ │ ├── OrderEditUpdateAction.raml │ │ │ ├── OrderExcerpt.raml │ │ │ ├── StagedOrder.raml │ │ │ ├── StagedOrderUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── OrderEditAddStagedActionAction.raml │ │ │ │ ├── OrderEditSetCommentAction.raml │ │ │ │ ├── OrderEditSetCustomFieldAction.raml │ │ │ │ ├── OrderEditSetCustomTypeAction.raml │ │ │ │ ├── OrderEditSetKeyAction.raml │ │ │ │ ├── OrderEditSetStagedActionsAction.raml │ │ │ │ ├── StagedOrderAddCustomLineItemAction.raml │ │ │ │ ├── StagedOrderAddDeliveryAction.raml │ │ │ │ ├── StagedOrderAddDiscountCodeAction.raml │ │ │ │ ├── StagedOrderAddItemShippingAddressAction.raml │ │ │ │ ├── StagedOrderAddLineItemAction.raml │ │ │ │ ├── StagedOrderAddParcelToDeliveryAction.raml │ │ │ │ ├── StagedOrderAddPaymentAction.raml │ │ │ │ ├── StagedOrderAddReturnInfoAction.raml │ │ │ │ ├── StagedOrderAddShoppingListAction.raml │ │ │ │ ├── StagedOrderChangeCustomLineItemMoneyAction.raml │ │ │ │ ├── StagedOrderChangeCustomLineItemQuantityAction.raml │ │ │ │ ├── StagedOrderChangeLineItemQuantityAction.raml │ │ │ │ ├── StagedOrderChangeOrderStateAction.raml │ │ │ │ ├── StagedOrderChangePaymentStateAction.raml │ │ │ │ ├── StagedOrderChangeShipmentStateAction.raml │ │ │ │ ├── StagedOrderChangeTaxCalculationModeAction.raml │ │ │ │ ├── StagedOrderChangeTaxModeAction.raml │ │ │ │ ├── StagedOrderChangeTaxRoundingModeAction.raml │ │ │ │ ├── StagedOrderImportCustomLineItemStateAction.raml │ │ │ │ ├── StagedOrderImportLineItemStateAction.raml │ │ │ │ ├── StagedOrderRemoveCustomLineItemAction.raml │ │ │ │ ├── StagedOrderRemoveDeliveryAction.raml │ │ │ │ ├── StagedOrderRemoveDiscountCodeAction.raml │ │ │ │ ├── StagedOrderRemoveItemShippingAddressAction.raml │ │ │ │ ├── StagedOrderRemoveLineItemAction.raml │ │ │ │ ├── StagedOrderRemoveParcelFromDeliveryAction.raml │ │ │ │ ├── StagedOrderRemovePaymentAction.raml │ │ │ │ ├── StagedOrderSetBillingAddressAction.raml │ │ │ │ ├── StagedOrderSetBillingAddressCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetBillingAddressCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetCountryAction.raml │ │ │ │ ├── StagedOrderSetCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetCustomLineItemCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetCustomLineItemCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetCustomLineItemShippingDetailsAction.raml │ │ │ │ ├── StagedOrderSetCustomLineItemTaxAmountAction.raml │ │ │ │ ├── StagedOrderSetCustomLineItemTaxRateAction.raml │ │ │ │ ├── StagedOrderSetCustomShippingMethodAction.raml │ │ │ │ ├── StagedOrderSetCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetCustomerEmailAction.raml │ │ │ │ ├── StagedOrderSetCustomerGroupAction.raml │ │ │ │ ├── StagedOrderSetCustomerIdAction.raml │ │ │ │ ├── StagedOrderSetDeliveryAddressAction.raml │ │ │ │ ├── StagedOrderSetDeliveryAddressCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetDeliveryAddressCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetDeliveryCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetDeliveryCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetDeliveryItemsAction.raml │ │ │ │ ├── StagedOrderSetDirectDiscountsAction.raml │ │ │ │ ├── StagedOrderSetItemShippingAddressCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetItemShippingAddressCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetLineItemCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetLineItemCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetLineItemDistributionChannelAction.raml │ │ │ │ ├── StagedOrderSetLineItemPriceAction.raml │ │ │ │ ├── StagedOrderSetLineItemShippingDetailsAction.raml │ │ │ │ ├── StagedOrderSetLineItemTaxAmountAction.raml │ │ │ │ ├── StagedOrderSetLineItemTaxRateAction.raml │ │ │ │ ├── StagedOrderSetLineItemTotalPriceAction.raml │ │ │ │ ├── StagedOrderSetLocaleAction.raml │ │ │ │ ├── StagedOrderSetOrderNumberAction.raml │ │ │ │ ├── StagedOrderSetOrderTotalTaxAction.raml │ │ │ │ ├── StagedOrderSetParcelCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetParcelCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetParcelItemsAction.raml │ │ │ │ ├── StagedOrderSetParcelMeasurementsAction.raml │ │ │ │ ├── StagedOrderSetParcelTrackingDataAction.raml │ │ │ │ ├── StagedOrderSetPurchaseOrderNumberAction.raml │ │ │ │ ├── StagedOrderSetReturnInfoAction.raml │ │ │ │ ├── StagedOrderSetReturnItemCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetReturnItemCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetReturnPaymentStateAction.raml │ │ │ │ ├── StagedOrderSetReturnShipmentStateAction.raml │ │ │ │ ├── StagedOrderSetShippingAddressAction.raml │ │ │ │ ├── StagedOrderSetShippingAddressAndCustomShippingMethodAction.raml │ │ │ │ ├── StagedOrderSetShippingAddressAndShippingMethodAction.raml │ │ │ │ ├── StagedOrderSetShippingAddressCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetShippingAddressCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetShippingCustomFieldAction.raml │ │ │ │ ├── StagedOrderSetShippingCustomTypeAction.raml │ │ │ │ ├── StagedOrderSetShippingMethodAction.raml │ │ │ │ ├── StagedOrderSetShippingMethodTaxAmountAction.raml │ │ │ │ ├── StagedOrderSetShippingMethodTaxRateAction.raml │ │ │ │ ├── StagedOrderSetShippingRateInputAction.raml │ │ │ │ ├── StagedOrderSetStoreAction.raml │ │ │ │ ├── StagedOrderTransitionCustomLineItemStateAction.raml │ │ │ │ ├── StagedOrderTransitionLineItemStateAction.raml │ │ │ │ ├── StagedOrderTransitionStateAction.raml │ │ │ │ ├── StagedOrderUpdateItemShippingAddressAction.raml │ │ │ │ └── StagedOrderUpdateSyncInfoAction.raml │ │ ├── order-search │ │ │ ├── Hit.raml │ │ │ ├── OrderPagedSearchResponse.raml │ │ │ ├── OrderSearchAndExpression.raml │ │ │ ├── OrderSearchAnyValue.raml │ │ │ ├── OrderSearchCompoundExpression.raml │ │ │ ├── OrderSearchCustomType.raml │ │ │ ├── OrderSearchDateRangeExpression.raml │ │ │ ├── OrderSearchDateRangeValue.raml │ │ │ ├── OrderSearchExactExpression.raml │ │ │ ├── OrderSearchExistsExpression.raml │ │ │ ├── OrderSearchFilterExpression.raml │ │ │ ├── OrderSearchFullTextExpression.raml │ │ │ ├── OrderSearchFullTextValue.raml │ │ │ ├── OrderSearchLongRangeExpression.raml │ │ │ ├── OrderSearchLongRangeValue.raml │ │ │ ├── OrderSearchMatchType.raml │ │ │ ├── OrderSearchNotExpression.raml │ │ │ ├── OrderSearchNumberRangeExpression.raml │ │ │ ├── OrderSearchNumberRangeValue.raml │ │ │ ├── OrderSearchOrExpression.raml │ │ │ ├── OrderSearchPrefixExpression.raml │ │ │ ├── OrderSearchQueryExpression.raml │ │ │ ├── OrderSearchQueryExpressionValue.raml │ │ │ ├── OrderSearchSortMode.raml │ │ │ ├── OrderSearchSortOrder.raml │ │ │ ├── OrderSearchStringValue.raml │ │ │ └── OrderSearchWildCardExpression.raml │ │ ├── order │ │ │ ├── CustomLineItemImportDraft.raml │ │ │ ├── CustomLineItemReturnItem.raml │ │ │ ├── Delivery.raml │ │ │ ├── DeliveryDraft.raml │ │ │ ├── DeliveryItem.raml │ │ │ ├── DiscountedLineItemPriceDraft.raml │ │ │ ├── ItemState.raml │ │ │ ├── LineItemImportDraft.raml │ │ │ ├── LineItemReturnItem.raml │ │ │ ├── Order.raml │ │ │ ├── OrderFromCartDraft.raml │ │ │ ├── OrderFromQuoteDraft.raml │ │ │ ├── OrderImportDraft.raml │ │ │ ├── OrderPagedQueryResponse.raml │ │ │ ├── OrderReference.raml │ │ │ ├── OrderSearchQuery.raml │ │ │ ├── OrderSearchRequest.raml │ │ │ ├── OrderSearchSorting.raml │ │ │ ├── OrderState.raml │ │ │ ├── OrderUpdate.raml │ │ │ ├── OrderUpdateAction.raml │ │ │ ├── Parcel.raml │ │ │ ├── ParcelDraft.raml │ │ │ ├── ParcelMeasurements.raml │ │ │ ├── PaymentInfo.raml │ │ │ ├── PaymentState.raml │ │ │ ├── ProductVariantImportDraft.raml │ │ │ ├── ReturnInfo.raml │ │ │ ├── ReturnInfoDraft.raml │ │ │ ├── ReturnItem.raml │ │ │ ├── ReturnItemDraft.raml │ │ │ ├── ReturnPaymentState.raml │ │ │ ├── ReturnShipmentState.raml │ │ │ ├── ShipmentState.raml │ │ │ ├── ShippingInfoImportDraft.raml │ │ │ ├── SyncInfo.raml │ │ │ ├── TaxedItemPriceDraft.raml │ │ │ ├── TrackingData.raml │ │ │ └── updates │ │ │ │ ├── OrderAddDeliveryAction.raml │ │ │ │ ├── OrderAddItemShippingAddressAction.raml │ │ │ │ ├── OrderAddParcelToDeliveryAction.raml │ │ │ │ ├── OrderAddPaymentAction.raml │ │ │ │ ├── OrderAddReturnInfoAction.raml │ │ │ │ ├── OrderChangeOrderStateAction.raml │ │ │ │ ├── OrderChangePaymentStateAction.raml │ │ │ │ ├── OrderChangeShipmentStateAction.raml │ │ │ │ ├── OrderImportCustomLineItemStateAction.raml │ │ │ │ ├── OrderImportLineItemStateAction.raml │ │ │ │ ├── OrderRemoveDeliveryAction.raml │ │ │ │ ├── OrderRemoveItemShippingAddressAction.raml │ │ │ │ ├── OrderRemoveParcelFromDeliveryAction.raml │ │ │ │ ├── OrderRemovePaymentAction.raml │ │ │ │ ├── OrderSetBillingAddressAction.raml │ │ │ │ ├── OrderSetBillingAddressCustomFieldAction.raml │ │ │ │ ├── OrderSetBillingAddressCustomTypeAction.raml │ │ │ │ ├── OrderSetCustomFieldAction.raml │ │ │ │ ├── OrderSetCustomLineItemCustomFieldAction.raml │ │ │ │ ├── OrderSetCustomLineItemCustomTypeAction.raml │ │ │ │ ├── OrderSetCustomLineItemShippingDetailsAction.raml │ │ │ │ ├── OrderSetCustomTypeAction.raml │ │ │ │ ├── OrderSetCustomerEmailAction.raml │ │ │ │ ├── OrderSetCustomerIdAction.raml │ │ │ │ ├── OrderSetDeliveryAddressAction.raml │ │ │ │ ├── OrderSetDeliveryAddressCustomFieldAction.raml │ │ │ │ ├── OrderSetDeliveryAddressCustomTypeAction.raml │ │ │ │ ├── OrderSetDeliveryCustomFieldAction.raml │ │ │ │ ├── OrderSetDeliveryCustomTypeAction.raml │ │ │ │ ├── OrderSetDeliveryItemsAction.raml │ │ │ │ ├── OrderSetItemShippingAddressCustomFieldAction.raml │ │ │ │ ├── OrderSetItemShippingAddressCustomTypeAction.raml │ │ │ │ ├── OrderSetLineItemCustomFieldAction.raml │ │ │ │ ├── OrderSetLineItemCustomTypeAction.raml │ │ │ │ ├── OrderSetLineItemShippingDetailsAction.raml │ │ │ │ ├── OrderSetLocaleAction.raml │ │ │ │ ├── OrderSetOrderNumberAction.raml │ │ │ │ ├── OrderSetParcelCustomFieldAction.raml │ │ │ │ ├── OrderSetParcelCustomTypeAction.raml │ │ │ │ ├── OrderSetParcelItemsAction.raml │ │ │ │ ├── OrderSetParcelMeasurementsAction.raml │ │ │ │ ├── OrderSetParcelTrackingDataAction.raml │ │ │ │ ├── OrderSetPurchaseOrderNumberAction.raml │ │ │ │ ├── OrderSetReturnInfoAction.raml │ │ │ │ ├── OrderSetReturnItemCustomFieldAction.raml │ │ │ │ ├── OrderSetReturnItemCustomTypeAction.raml │ │ │ │ ├── OrderSetReturnPaymentStateAction.raml │ │ │ │ ├── OrderSetReturnShipmentStateAction.raml │ │ │ │ ├── OrderSetShippingAddressAction.raml │ │ │ │ ├── OrderSetShippingAddressCustomFieldAction.raml │ │ │ │ ├── OrderSetShippingAddressCustomTypeAction.raml │ │ │ │ ├── OrderSetShippingCustomFieldAction.raml │ │ │ │ ├── OrderSetShippingCustomTypeAction.raml │ │ │ │ ├── OrderSetStoreAction.raml │ │ │ │ ├── OrderTransitionCustomLineItemStateAction.raml │ │ │ │ ├── OrderTransitionLineItemStateAction.raml │ │ │ │ ├── OrderTransitionStateAction.raml │ │ │ │ ├── OrderUpdateItemShippingAddressAction.raml │ │ │ │ └── OrderUpdateSyncInfoAction.raml │ │ ├── payment │ │ │ ├── Payment.raml │ │ │ ├── PaymentDraft.raml │ │ │ ├── PaymentMethodInfo.raml │ │ │ ├── PaymentPagedQueryResponse.raml │ │ │ ├── PaymentReference.raml │ │ │ ├── PaymentResourceIdentifier.raml │ │ │ ├── PaymentStatus.raml │ │ │ ├── PaymentStatusDraft.raml │ │ │ ├── PaymentUpdate.raml │ │ │ ├── PaymentUpdateAction.raml │ │ │ ├── Transaction.raml │ │ │ ├── TransactionDraft.raml │ │ │ ├── TransactionState.raml │ │ │ ├── TransactionType.raml │ │ │ └── updates │ │ │ │ ├── PaymentAddInterfaceInteractionAction.raml │ │ │ │ ├── PaymentAddTransactionAction.raml │ │ │ │ ├── PaymentChangeAmountPlannedAction.raml │ │ │ │ ├── PaymentChangeTransactionInteractionIdAction.raml │ │ │ │ ├── PaymentChangeTransactionStateAction.raml │ │ │ │ ├── PaymentChangeTransactionTimestampAction.raml │ │ │ │ ├── PaymentSetAmountPaidAction.raml │ │ │ │ ├── PaymentSetAmountRefundedAction.raml │ │ │ │ ├── PaymentSetAnonymousIdAction.raml │ │ │ │ ├── PaymentSetAuthorizationAction.raml │ │ │ │ ├── PaymentSetCustomFieldAction.raml │ │ │ │ ├── PaymentSetCustomTypeAction.raml │ │ │ │ ├── PaymentSetCustomerAction.raml │ │ │ │ ├── PaymentSetExternalIdAction.raml │ │ │ │ ├── PaymentSetInterfaceIdAction.raml │ │ │ │ ├── PaymentSetKeyAction.raml │ │ │ │ ├── PaymentSetMethodInfoInterfaceAction.raml │ │ │ │ ├── PaymentSetMethodInfoMethodAction.raml │ │ │ │ ├── PaymentSetMethodInfoNameAction.raml │ │ │ │ ├── PaymentSetStatusInterfaceCodeAction.raml │ │ │ │ ├── PaymentSetStatusInterfaceTextAction.raml │ │ │ │ ├── PaymentSetTransactionCustomFieldAction.raml │ │ │ │ ├── PaymentSetTransactionCustomTypeAction.raml │ │ │ │ └── PaymentTransitionStateAction.raml │ │ ├── product-discount │ │ │ ├── ProductDiscount.raml │ │ │ ├── ProductDiscountDraft.raml │ │ │ ├── ProductDiscountMatchQuery.raml │ │ │ ├── ProductDiscountPagedQueryResponse.raml │ │ │ ├── ProductDiscountReference.raml │ │ │ ├── ProductDiscountResourceIdentifier.raml │ │ │ ├── ProductDiscountUpdate.raml │ │ │ ├── ProductDiscountUpdateAction.raml │ │ │ ├── ProductDiscountValue.raml │ │ │ ├── ProductDiscountValueAbsolute.raml │ │ │ ├── ProductDiscountValueAbsoluteDraft.raml │ │ │ ├── ProductDiscountValueDraft.raml │ │ │ ├── ProductDiscountValueExternal.raml │ │ │ ├── ProductDiscountValueExternalDraft.raml │ │ │ ├── ProductDiscountValueRelative.raml │ │ │ ├── ProductDiscountValueRelativeDraft.raml │ │ │ └── updates │ │ │ │ ├── ProductDiscountChangeIsActiveAction.raml │ │ │ │ ├── ProductDiscountChangeNameAction.raml │ │ │ │ ├── ProductDiscountChangePredicateAction.raml │ │ │ │ ├── ProductDiscountChangeSortOrderAction.raml │ │ │ │ ├── ProductDiscountChangeValueAction.raml │ │ │ │ ├── ProductDiscountSetDescriptionAction.raml │ │ │ │ ├── ProductDiscountSetKeyAction.raml │ │ │ │ ├── ProductDiscountSetValidFromAction.raml │ │ │ │ ├── ProductDiscountSetValidFromAndUntilAction.raml │ │ │ │ └── ProductDiscountSetValidUntilAction.raml │ │ ├── product-search │ │ │ ├── ProductPagedSearchResponse.raml │ │ │ ├── ProductSearchErrorResponse.raml │ │ │ ├── ProductSearchMatchingVariantEntry.raml │ │ │ ├── ProductSearchMatchingVariants.raml │ │ │ ├── ProductSearchProjectionParams.raml │ │ │ ├── ProductSearchRequest.raml │ │ │ ├── ProductSearchResult.raml │ │ │ └── facets │ │ │ │ ├── ProductSearchFacetCountExpression.raml │ │ │ │ ├── ProductSearchFacetCountLevelEnum.raml │ │ │ │ ├── ProductSearchFacetCountValue.raml │ │ │ │ ├── ProductSearchFacetDistinctBucketSortBy.raml │ │ │ │ ├── ProductSearchFacetDistinctBucketSortExpression.raml │ │ │ │ ├── ProductSearchFacetDistinctExpression.raml │ │ │ │ ├── ProductSearchFacetDistinctValue.raml │ │ │ │ ├── ProductSearchFacetExpression.raml │ │ │ │ ├── ProductSearchFacetRangesExpression.raml │ │ │ │ ├── ProductSearchFacetRangesFacetRange.raml │ │ │ │ ├── ProductSearchFacetRangesValue.raml │ │ │ │ ├── ProductSearchFacetResult.raml │ │ │ │ ├── ProductSearchFacetResultBucket.raml │ │ │ │ ├── ProductSearchFacetResultBucketEntry.raml │ │ │ │ ├── ProductSearchFacetResultCount.raml │ │ │ │ ├── ProductSearchFacetScope.raml │ │ │ │ └── ProductSearchFacetScopeEnum.raml │ │ ├── product-selection │ │ │ ├── AssignedProductReference.raml │ │ │ ├── AssignedProductSelection.raml │ │ │ ├── AssignedProductSelectionPagedQueryResponse.raml │ │ │ ├── IndividualExclusionProductSelectionType.raml │ │ │ ├── IndividualProductSelectionType.raml │ │ │ ├── ProductSelection.raml │ │ │ ├── ProductSelectionAssignment.raml │ │ │ ├── ProductSelectionDraft.raml │ │ │ ├── ProductSelectionMode.raml │ │ │ ├── ProductSelectionPagedQueryResponse.raml │ │ │ ├── ProductSelectionProductPagedQueryResponse.raml │ │ │ ├── ProductSelectionReference.raml │ │ │ ├── ProductSelectionResourceIdentifier.raml │ │ │ ├── ProductSelectionType.raml │ │ │ ├── ProductSelectionTypeEnum.raml │ │ │ ├── ProductSelectionUpdate.raml │ │ │ ├── ProductSelectionUpdateAction.raml │ │ │ ├── ProductVariantExclusion.raml │ │ │ ├── ProductVariantSelection.raml │ │ │ ├── ProductVariantSelectionExclusion.raml │ │ │ ├── ProductVariantSelectionIncludeAllExcept.raml │ │ │ ├── ProductVariantSelectionIncludeOnly.raml │ │ │ ├── ProductVariantSelectionInclusion.raml │ │ │ ├── ProductVariantSelectionTypeEnum.raml │ │ │ ├── ProductsInStorePagedQueryResponse.raml │ │ │ └── updates │ │ │ │ ├── ProductSelectionAddProductAction.raml │ │ │ │ ├── ProductSelectionChangeNameAction.raml │ │ │ │ ├── ProductSelectionExcludeProductAction.raml │ │ │ │ ├── ProductSelectionRemoveProductAction.raml │ │ │ │ ├── ProductSelectionSetCustomFieldAction.raml │ │ │ │ ├── ProductSelectionSetCustomTypeAction.raml │ │ │ │ ├── ProductSelectionSetKeyAction.raml │ │ │ │ ├── ProductSelectionSetVariantExclusionAction.raml │ │ │ │ └── ProductSelectionSetVariantSelectionAction.raml │ │ ├── product-tailoring │ │ │ ├── ProductTailoring.raml │ │ │ ├── ProductTailoringData.raml │ │ │ ├── ProductTailoringDraft.raml │ │ │ ├── ProductTailoringInStoreDraft.raml │ │ │ ├── ProductTailoringPagedQueryResponse.raml │ │ │ ├── ProductTailoringReference.raml │ │ │ ├── ProductTailoringResourceIdentifier.raml │ │ │ ├── ProductTailoringUpdate.raml │ │ │ ├── ProductTailoringUpdateAction.raml │ │ │ ├── ProductVariantTailoring.raml │ │ │ ├── ProductVariantTailoringDraft.raml │ │ │ └── updates │ │ │ │ ├── ProductTailoringAddAssetAction.raml │ │ │ │ ├── ProductTailoringAddExternalImageAction.raml │ │ │ │ ├── ProductTailoringAddVariantAction.raml │ │ │ │ ├── ProductTailoringChangeAssetNameAction.raml │ │ │ │ ├── ProductTailoringChangeAssetOrderAction.raml │ │ │ │ ├── ProductTailoringMoveImageToPositionAction.raml │ │ │ │ ├── ProductTailoringPublishAction.raml │ │ │ │ ├── ProductTailoringRemoveAssetAction.raml │ │ │ │ ├── ProductTailoringRemoveImageAction.raml │ │ │ │ ├── ProductTailoringRemoveVariantAction.raml │ │ │ │ ├── ProductTailoringSetAssetCustomFieldAction.raml │ │ │ │ ├── ProductTailoringSetAssetCustomTypeAction.raml │ │ │ │ ├── ProductTailoringSetAssetDescriptionAction.raml │ │ │ │ ├── ProductTailoringSetAssetKeyAction.raml │ │ │ │ ├── ProductTailoringSetAssetSourcesAction.raml │ │ │ │ ├── ProductTailoringSetAssetTagsAction.raml │ │ │ │ ├── ProductTailoringSetDescriptionAction.raml │ │ │ │ ├── ProductTailoringSetExternalImagesAction.raml │ │ │ │ ├── ProductTailoringSetImageLabelAction.raml │ │ │ │ ├── ProductTailoringSetMetaAttributesAction.raml │ │ │ │ ├── ProductTailoringSetMetaDescriptionAction.raml │ │ │ │ ├── ProductTailoringSetMetaKeywordsAction.raml │ │ │ │ ├── ProductTailoringSetMetaTitleAction.raml │ │ │ │ ├── ProductTailoringSetNameAction.raml │ │ │ │ ├── ProductTailoringSetSlugAction.raml │ │ │ │ └── ProductTailoringUnpublishAction.raml │ │ ├── product-type │ │ │ ├── AttributeBooleanType.raml │ │ │ ├── AttributeConstraintEnum.raml │ │ │ ├── AttributeConstraintEnumDraft.raml │ │ │ ├── AttributeDateTimeType.raml │ │ │ ├── AttributeDateType.raml │ │ │ ├── AttributeDefinition.raml │ │ │ ├── AttributeDefinitionDraft.raml │ │ │ ├── AttributeEnumType.raml │ │ │ ├── AttributeLocalizableTextType.raml │ │ │ ├── AttributeLocalizedEnumType.raml │ │ │ ├── AttributeLocalizedEnumValue.raml │ │ │ ├── AttributeMoneyType.raml │ │ │ ├── AttributeNestedType.raml │ │ │ ├── AttributeNumberType.raml │ │ │ ├── AttributePlainEnumValue.raml │ │ │ ├── AttributeReferenceType.raml │ │ │ ├── AttributeReferenceTypeId.raml │ │ │ ├── AttributeSetType.raml │ │ │ ├── AttributeTextType.raml │ │ │ ├── AttributeTimeType.raml │ │ │ ├── AttributeType.raml │ │ │ ├── ProductType.raml │ │ │ ├── ProductTypeDraft.raml │ │ │ ├── ProductTypePagedQueryResponse.raml │ │ │ ├── ProductTypeReference.raml │ │ │ ├── ProductTypeResourceIdentifier.raml │ │ │ ├── ProductTypeUpdate.raml │ │ │ ├── ProductTypeUpdateAction.raml │ │ │ ├── TextInputHint.raml │ │ │ └── updates │ │ │ │ ├── ProductTypeAddAttributeDefinitionAction.raml │ │ │ │ ├── ProductTypeAddLocalizedEnumValueAction.raml │ │ │ │ ├── ProductTypeAddPlainEnumValueAction.raml │ │ │ │ ├── ProductTypeChangeAttributeConstraintAction.raml │ │ │ │ ├── ProductTypeChangeAttributeNameAction.raml │ │ │ │ ├── ProductTypeChangeAttributeOrderAction.raml │ │ │ │ ├── ProductTypeChangeAttributeOrderByNameAction.raml │ │ │ │ ├── ProductTypeChangeDescriptionAction.raml │ │ │ │ ├── ProductTypeChangeEnumKeyAction.raml │ │ │ │ ├── ProductTypeChangeInputHintAction.raml │ │ │ │ ├── ProductTypeChangeIsSearchableAction.raml │ │ │ │ ├── ProductTypeChangeLabelAction.raml │ │ │ │ ├── ProductTypeChangeLocalizedEnumValueLabelAction.raml │ │ │ │ ├── ProductTypeChangeLocalizedEnumValueOrderAction.raml │ │ │ │ ├── ProductTypeChangeNameAction.raml │ │ │ │ ├── ProductTypeChangePlainEnumValueLabelAction.raml │ │ │ │ ├── ProductTypeChangePlainEnumValueOrderAction.raml │ │ │ │ ├── ProductTypeRemoveAttributeDefinitionAction.raml │ │ │ │ ├── ProductTypeRemoveEnumValuesAction.raml │ │ │ │ ├── ProductTypeSetInputTipAction.raml │ │ │ │ └── ProductTypeSetKeyAction.raml │ │ ├── product │ │ │ ├── Attribute.raml │ │ │ ├── AttributeValue.raml │ │ │ ├── CategoryOrderHints.raml │ │ │ ├── CustomTokenizer.raml │ │ │ ├── FacetRange.raml │ │ │ ├── FacetResult.raml │ │ │ ├── FacetResults.raml │ │ │ ├── FacetTerm.raml │ │ │ ├── FacetTypes.raml │ │ │ ├── FilteredFacetResult.raml │ │ │ ├── Product.raml │ │ │ ├── ProductCatalogData.raml │ │ │ ├── ProductData.raml │ │ │ ├── ProductDraft.raml │ │ │ ├── ProductPagedQueryResponse.raml │ │ │ ├── ProductPriceModeEnum.raml │ │ │ ├── ProductProjection.raml │ │ │ ├── ProductProjectionPagedQueryResponse.raml │ │ │ ├── ProductProjectionPagedSearchResponse.raml │ │ │ ├── ProductPublishScope.raml │ │ │ ├── ProductReference.raml │ │ │ ├── ProductResourceIdentifier.raml │ │ │ ├── ProductUpdate.raml │ │ │ ├── ProductUpdateAction.raml │ │ │ ├── ProductVariant.raml │ │ │ ├── ProductVariantAvailability.raml │ │ │ ├── ProductVariantChannelAvailability.raml │ │ │ ├── ProductVariantChannelAvailabilityMap.raml │ │ │ ├── ProductVariantDraft.raml │ │ │ ├── RangeFacetResult.raml │ │ │ ├── SearchKeyword.raml │ │ │ ├── SearchKeywords.raml │ │ │ ├── SuggestTokenizer.raml │ │ │ ├── Suggestion.raml │ │ │ ├── SuggestionResult.raml │ │ │ ├── TermFacetResult.raml │ │ │ ├── TermFacetResultType.raml │ │ │ ├── WhitespaceTokenizer.raml │ │ │ └── updates │ │ │ │ ├── ProductAddAssetAction.raml │ │ │ │ ├── ProductAddExternalImageAction.raml │ │ │ │ ├── ProductAddPriceAction.raml │ │ │ │ ├── ProductAddToCategoryAction.raml │ │ │ │ ├── ProductAddVariantAction.raml │ │ │ │ ├── ProductChangeAssetNameAction.raml │ │ │ │ ├── ProductChangeAssetOrderAction.raml │ │ │ │ ├── ProductChangeMasterVariantAction.raml │ │ │ │ ├── ProductChangeNameAction.raml │ │ │ │ ├── ProductChangePriceAction.raml │ │ │ │ ├── ProductChangeSlugAction.raml │ │ │ │ ├── ProductLegacySetSkuAction.raml │ │ │ │ ├── ProductMoveImageToPositionAction.raml │ │ │ │ ├── ProductPublishAction.raml │ │ │ │ ├── ProductRemoveAssetAction.raml │ │ │ │ ├── ProductRemoveFromCategoryAction.raml │ │ │ │ ├── ProductRemoveImageAction.raml │ │ │ │ ├── ProductRemovePriceAction.raml │ │ │ │ ├── ProductRemoveVariantAction.raml │ │ │ │ ├── ProductRevertStagedChangesAction.raml │ │ │ │ ├── ProductRevertStagedVariantChangesAction.raml │ │ │ │ ├── ProductSetAssetCustomFieldAction.raml │ │ │ │ ├── ProductSetAssetCustomTypeAction.raml │ │ │ │ ├── ProductSetAssetDescriptionAction.raml │ │ │ │ ├── ProductSetAssetKeyAction.raml │ │ │ │ ├── ProductSetAssetSourcesAction.raml │ │ │ │ ├── ProductSetAssetTagsAction.raml │ │ │ │ ├── ProductSetAttributeAction.raml │ │ │ │ ├── ProductSetAttributeInAllVariantsAction.raml │ │ │ │ ├── ProductSetCategoryOrderHintAction.raml │ │ │ │ ├── ProductSetDescriptionAction.raml │ │ │ │ ├── ProductSetDiscountedPriceAction.raml │ │ │ │ ├── ProductSetImageLabelAction.raml │ │ │ │ ├── ProductSetKeyAction.raml │ │ │ │ ├── ProductSetMetaDescriptionAction.raml │ │ │ │ ├── ProductSetMetaKeywordsAction.raml │ │ │ │ ├── ProductSetMetaTitleAction.raml │ │ │ │ ├── ProductSetPriceKeyAction.raml │ │ │ │ ├── ProductSetPriceModeAction.raml │ │ │ │ ├── ProductSetPricesAction.raml │ │ │ │ ├── ProductSetProductPriceCustomFieldAction.raml │ │ │ │ ├── ProductSetProductPriceCustomTypeAction.raml │ │ │ │ ├── ProductSetProductVariantKeyAction.raml │ │ │ │ ├── ProductSetSearchKeywordsAction.raml │ │ │ │ ├── ProductSetSkuAction.raml │ │ │ │ ├── ProductSetTaxCategoryAction.raml │ │ │ │ ├── ProductTransitionStateAction.raml │ │ │ │ └── ProductUnpublishAction.raml │ │ ├── project │ │ │ ├── BusinessUnitConfiguration.raml │ │ │ ├── BusinessUnitConfigurationStatus.raml │ │ │ ├── CartClassificationType.raml │ │ │ ├── CartScoreType.raml │ │ │ ├── CartValueType.raml │ │ │ ├── CartsConfiguration.raml │ │ │ ├── CustomerSearchStatus.raml │ │ │ ├── ExternalOAuth.raml │ │ │ ├── OrderSearchStatus.raml │ │ │ ├── ProductSearchIndexingMode.raml │ │ │ ├── ProductSearchStatus.raml │ │ │ ├── Project.raml │ │ │ ├── ProjectUpdate.raml │ │ │ ├── ProjectUpdateAction.raml │ │ │ ├── SearchIndexingConfiguration.raml │ │ │ ├── SearchIndexingConfigurationStatus.raml │ │ │ ├── SearchIndexingConfigurationValues.raml │ │ │ ├── ShippingRateInputType.raml │ │ │ ├── ShoppingListsConfiguration.raml │ │ │ └── updates │ │ │ │ ├── ProjectChangeBusinessUnitStatusOnCreationAction.raml │ │ │ │ ├── ProjectChangeCartsConfigurationAction.raml │ │ │ │ ├── ProjectChangeCountriesAction.raml │ │ │ │ ├── ProjectChangeCountryTaxRateFallbackEnabledAction.raml │ │ │ │ ├── ProjectChangeCurrenciesAction.raml │ │ │ │ ├── ProjectChangeCustomerSearchStatusAction.raml │ │ │ │ ├── ProjectChangeLanguagesAction.raml │ │ │ │ ├── ProjectChangeMessagesConfigurationAction.raml │ │ │ │ ├── ProjectChangeMessagesEnabledAction.raml │ │ │ │ ├── ProjectChangeNameAction.raml │ │ │ │ ├── ProjectChangeOrderSearchStatusAction.raml │ │ │ │ ├── ProjectChangeProductSearchIndexingEnabledAction.raml │ │ │ │ ├── ProjectChangeShoppingListsConfigurationAction.raml │ │ │ │ ├── ProjectSetBusinessUnitAssociateRoleOnCreationAction.raml │ │ │ │ ├── ProjectSetExternalOAuthAction.raml │ │ │ │ └── ProjectSetShippingRateInputTypeAction.raml │ │ ├── quote-request │ │ │ ├── QuoteRequest.raml │ │ │ ├── QuoteRequestDraft.raml │ │ │ ├── QuoteRequestPagedQueryResponse.raml │ │ │ ├── QuoteRequestReference.raml │ │ │ ├── QuoteRequestResourceIdentifier.raml │ │ │ ├── QuoteRequestState.raml │ │ │ ├── QuoteRequestUpdate.raml │ │ │ ├── QuoteRequestUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── QuoteRequestChangeCustomerAction.raml │ │ │ │ ├── QuoteRequestChangeQuoteRequestStateAction.raml │ │ │ │ ├── QuoteRequestSetCustomFieldAction.raml │ │ │ │ ├── QuoteRequestSetCustomTypeAction.raml │ │ │ │ └── QuoteRequestTransitionStateAction.raml │ │ ├── quote │ │ │ ├── Quote.raml │ │ │ ├── QuoteDraft.raml │ │ │ ├── QuotePagedQueryResponse.raml │ │ │ ├── QuoteReference.raml │ │ │ ├── QuoteResourceIdentifier.raml │ │ │ ├── QuoteState.raml │ │ │ ├── QuoteUpdate.raml │ │ │ ├── QuoteUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── QuoteChangeCustomerAction.raml │ │ │ │ ├── QuoteChangeQuoteStateAction.raml │ │ │ │ ├── QuoteRequestQuoteRenegotiationAction.raml │ │ │ │ ├── QuoteSetCustomFieldAction.raml │ │ │ │ ├── QuoteSetCustomTypeAction.raml │ │ │ │ └── QuoteTransitionStateAction.raml │ │ ├── review │ │ │ ├── Review.raml │ │ │ ├── ReviewDraft.raml │ │ │ ├── ReviewPagedQueryResponse.raml │ │ │ ├── ReviewRatingStatistics.raml │ │ │ ├── ReviewReference.raml │ │ │ ├── ReviewResourceIdentifier.raml │ │ │ ├── ReviewUpdate.raml │ │ │ ├── ReviewUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── ReviewSetAuthorNameAction.raml │ │ │ │ ├── ReviewSetCustomFieldAction.raml │ │ │ │ ├── ReviewSetCustomTypeAction.raml │ │ │ │ ├── ReviewSetCustomerAction.raml │ │ │ │ ├── ReviewSetKeyAction.raml │ │ │ │ ├── ReviewSetLocaleAction.raml │ │ │ │ ├── ReviewSetRatingAction.raml │ │ │ │ ├── ReviewSetTargetAction.raml │ │ │ │ ├── ReviewSetTextAction.raml │ │ │ │ ├── ReviewSetTitleAction.raml │ │ │ │ └── ReviewTransitionStateAction.raml │ │ ├── search │ │ │ ├── SearchAndExpression.raml │ │ │ ├── SearchAnyValue.raml │ │ │ ├── SearchCompoundExpression.raml │ │ │ ├── SearchDateRangeExpression.raml │ │ │ ├── SearchDateRangeValue.raml │ │ │ ├── SearchDateTimeRangeExpression.raml │ │ │ ├── SearchDateTimeRangeValue.raml │ │ │ ├── SearchExactExpression.raml │ │ │ ├── SearchExistsExpression.raml │ │ │ ├── SearchExistsValue.raml │ │ │ ├── SearchFieldType.raml │ │ │ ├── SearchFilterExpression.raml │ │ │ ├── SearchFullTextExpression.raml │ │ │ ├── SearchFullTextPrefixExpression.raml │ │ │ ├── SearchFullTextPrefixValue.raml │ │ │ ├── SearchFullTextValue.raml │ │ │ ├── SearchLongRangeExpression.raml │ │ │ ├── SearchLongRangeValue.raml │ │ │ ├── SearchMatchType.raml │ │ │ ├── SearchMatchingVariant.raml │ │ │ ├── SearchNotExpression.raml │ │ │ ├── SearchNumberRangeExpression.raml │ │ │ ├── SearchNumberRangeValue.raml │ │ │ ├── SearchOrExpression.raml │ │ │ ├── SearchPrefixExpression.raml │ │ │ ├── SearchQuery.raml │ │ │ ├── SearchQueryExpression.raml │ │ │ ├── SearchQueryExpressionValue.raml │ │ │ ├── SearchSortMode.raml │ │ │ ├── SearchSortOrder.raml │ │ │ ├── SearchSorting.raml │ │ │ ├── SearchTimeRangeExpression.raml │ │ │ ├── SearchTimeRangeValue.raml │ │ │ └── SearchWildCardExpression.raml │ │ ├── shipping-method │ │ │ ├── CartClassificationTier.raml │ │ │ ├── CartScoreTier.raml │ │ │ ├── CartValueTier.raml │ │ │ ├── PriceFunction.raml │ │ │ ├── ShippingMethod.raml │ │ │ ├── ShippingMethodDraft.raml │ │ │ ├── ShippingMethodPagedQueryResponse.raml │ │ │ ├── ShippingMethodReference.raml │ │ │ ├── ShippingMethodResourceIdentifier.raml │ │ │ ├── ShippingMethodUpdate.raml │ │ │ ├── ShippingMethodUpdateAction.raml │ │ │ ├── ShippingRate.raml │ │ │ ├── ShippingRateDraft.raml │ │ │ ├── ShippingRatePriceTier.raml │ │ │ ├── ShippingRateTierType.raml │ │ │ ├── ZoneRate.raml │ │ │ ├── ZoneRateDraft.raml │ │ │ └── updates │ │ │ │ ├── ShippingMethodAddShippingRateAction.raml │ │ │ │ ├── ShippingMethodAddZoneAction.raml │ │ │ │ ├── ShippingMethodChangeActiveAction.raml │ │ │ │ ├── ShippingMethodChangeIsDefaultAction.raml │ │ │ │ ├── ShippingMethodChangeNameAction.raml │ │ │ │ ├── ShippingMethodChangeTaxCategoryAction.raml │ │ │ │ ├── ShippingMethodRemoveShippingRateAction.raml │ │ │ │ ├── ShippingMethodRemoveZoneAction.raml │ │ │ │ ├── ShippingMethodSetCustomFieldAction.raml │ │ │ │ ├── ShippingMethodSetCustomTypeAction.raml │ │ │ │ ├── ShippingMethodSetDescriptionAction.raml │ │ │ │ ├── ShippingMethodSetKeyAction.raml │ │ │ │ ├── ShippingMethodSetLocalizedDescriptionAction.raml │ │ │ │ ├── ShippingMethodSetLocalizedNameAction.raml │ │ │ │ └── ShippingMethodSetPredicateAction.raml │ │ ├── shopping-list │ │ │ ├── ShoppingList.raml │ │ │ ├── ShoppingListDraft.raml │ │ │ ├── ShoppingListLineItem.raml │ │ │ ├── ShoppingListLineItemDraft.raml │ │ │ ├── ShoppingListPagedQueryResponse.raml │ │ │ ├── ShoppingListReference.raml │ │ │ ├── ShoppingListResourceIdentifier.raml │ │ │ ├── ShoppingListUpdate.raml │ │ │ ├── ShoppingListUpdateAction.raml │ │ │ ├── TextLineItem.raml │ │ │ ├── TextLineItemDraft.raml │ │ │ └── updates │ │ │ │ ├── ShoppingListAddLineItemAction.raml │ │ │ │ ├── ShoppingListAddTextLineItemAction.raml │ │ │ │ ├── ShoppingListChangeLineItemQuantityAction.raml │ │ │ │ ├── ShoppingListChangeLineItemsOrderAction.raml │ │ │ │ ├── ShoppingListChangeNameAction.raml │ │ │ │ ├── ShoppingListChangeTextLineItemNameAction.raml │ │ │ │ ├── ShoppingListChangeTextLineItemQuantityAction.raml │ │ │ │ ├── ShoppingListChangeTextLineItemsOrderAction.raml │ │ │ │ ├── ShoppingListRemoveLineItemAction.raml │ │ │ │ ├── ShoppingListRemoveTextLineItemAction.raml │ │ │ │ ├── ShoppingListSetAnonymousIdAction.raml │ │ │ │ ├── ShoppingListSetCustomFieldAction.raml │ │ │ │ ├── ShoppingListSetCustomTypeAction.raml │ │ │ │ ├── ShoppingListSetCustomerAction.raml │ │ │ │ ├── ShoppingListSetDeleteDaysAfterLastModificationAction.raml │ │ │ │ ├── ShoppingListSetDescriptionAction.raml │ │ │ │ ├── ShoppingListSetKeyAction.raml │ │ │ │ ├── ShoppingListSetLineItemCustomFieldAction.raml │ │ │ │ ├── ShoppingListSetLineItemCustomTypeAction.raml │ │ │ │ ├── ShoppingListSetSlugAction.raml │ │ │ │ ├── ShoppingListSetStoreAction.raml │ │ │ │ ├── ShoppingListSetTextLineItemCustomFieldAction.raml │ │ │ │ ├── ShoppingListSetTextLineItemCustomTypeAction.raml │ │ │ │ └── ShoppingListSetTextLineItemDescriptionAction.raml │ │ ├── staged-quote │ │ │ ├── StagedQuote.raml │ │ │ ├── StagedQuoteDraft.raml │ │ │ ├── StagedQuotePagedQueryResponse.raml │ │ │ ├── StagedQuoteReference.raml │ │ │ ├── StagedQuoteResourceIdentifier.raml │ │ │ ├── StagedQuoteState.raml │ │ │ ├── StagedQuoteUpdate.raml │ │ │ ├── StagedQuoteUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── StagedQuoteChangeStagedQuoteStateAction.raml │ │ │ │ ├── StagedQuoteSetCustomFieldAction.raml │ │ │ │ ├── StagedQuoteSetCustomTypeAction.raml │ │ │ │ ├── StagedQuoteSetSellerCommentAction.raml │ │ │ │ ├── StagedQuoteSetValidToAction.raml │ │ │ │ └── StagedQuoteTransitionStateAction.raml │ │ ├── standalone-price │ │ │ ├── StagedPriceDraft.raml │ │ │ ├── StagedStandalonePrice.raml │ │ │ ├── StandalonePrice.raml │ │ │ ├── StandalonePriceDraft.raml │ │ │ ├── StandalonePricePagedQueryResponse.raml │ │ │ ├── StandalonePriceReference.raml │ │ │ ├── StandalonePriceResourceIdentifier.raml │ │ │ ├── StandalonePriceUpdate.raml │ │ │ ├── StandalonePriceUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── StandalonePriceAddPriceTierAction.raml │ │ │ │ ├── StandalonePriceApplyStagedChangesAction.raml │ │ │ │ ├── StandalonePriceChangeActiveAction.raml │ │ │ │ ├── StandalonePriceChangeValueAction.raml │ │ │ │ ├── StandalonePriceRemovePriceTierAction.raml │ │ │ │ ├── StandalonePriceRemoveStagedChangesAction.raml │ │ │ │ ├── StandalonePriceSetCustomFieldAction.raml │ │ │ │ ├── StandalonePriceSetCustomTypeAction.raml │ │ │ │ ├── StandalonePriceSetDiscountedPriceAction.raml │ │ │ │ ├── StandalonePriceSetKeyAction.raml │ │ │ │ ├── StandalonePriceSetPriceTiersAction.raml │ │ │ │ ├── StandalonePriceSetValidFromAction.raml │ │ │ │ ├── StandalonePriceSetValidFromAndUntilAction.raml │ │ │ │ └── StandalonePriceSetValidUntilAction.raml │ │ ├── state │ │ │ ├── State.raml │ │ │ ├── StateDraft.raml │ │ │ ├── StatePagedQueryResponse.raml │ │ │ ├── StateReference.raml │ │ │ ├── StateResourceIdentifier.raml │ │ │ ├── StateRoleEnum.raml │ │ │ ├── StateTypeEnum.raml │ │ │ ├── StateUpdate.raml │ │ │ ├── StateUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── StateAddRolesAction.raml │ │ │ │ ├── StateChangeInitialAction.raml │ │ │ │ ├── StateChangeKeyAction.raml │ │ │ │ ├── StateChangeTypeAction.raml │ │ │ │ ├── StateRemoveRolesAction.raml │ │ │ │ ├── StateSetDescriptionAction.raml │ │ │ │ ├── StateSetNameAction.raml │ │ │ │ ├── StateSetRolesAction.raml │ │ │ │ └── StateSetTransitionsAction.raml │ │ ├── store │ │ │ ├── ProductSelectionSetting.raml │ │ │ ├── ProductSelectionSettingDraft.raml │ │ │ ├── Store.raml │ │ │ ├── StoreCountry.raml │ │ │ ├── StoreDraft.raml │ │ │ ├── StoreKeyReference.raml │ │ │ ├── StorePagedQueryResponse.raml │ │ │ ├── StoreReference.raml │ │ │ ├── StoreResourceIdentifier.raml │ │ │ ├── StoreUpdate.raml │ │ │ ├── StoreUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── StoreAddCountryAction.raml │ │ │ │ ├── StoreAddDistributionChannelAction.raml │ │ │ │ ├── StoreAddProductSelectionAction.raml │ │ │ │ ├── StoreAddSupplyChannelAction.raml │ │ │ │ ├── StoreChangeProductSelectionAction.raml │ │ │ │ ├── StoreRemoveCountryAction.raml │ │ │ │ ├── StoreRemoveDistributionChannelAction.raml │ │ │ │ ├── StoreRemoveProductSelectionAction.raml │ │ │ │ ├── StoreRemoveSupplyChannelAction.raml │ │ │ │ ├── StoreSetCountriesAction.raml │ │ │ │ ├── StoreSetCustomFieldAction.raml │ │ │ │ ├── StoreSetCustomTypeAction.raml │ │ │ │ ├── StoreSetDistributionChannelsAction.raml │ │ │ │ ├── StoreSetLanguagesAction.raml │ │ │ │ ├── StoreSetNameAction.raml │ │ │ │ ├── StoreSetProductSelectionsAction.raml │ │ │ │ └── StoreSetSupplyChannelsAction.raml │ │ ├── subscription │ │ │ ├── AwsAuthenticationMode.raml │ │ │ ├── AzureEventGridDestination.raml │ │ │ ├── AzureServiceBusDestination.raml │ │ │ ├── ChangeSubscription.raml │ │ │ ├── ChangeSubscriptionResourceTypeId.raml │ │ │ ├── CloudEventsFormat.raml │ │ │ ├── CloudEventsPayload.raml │ │ │ ├── ConfluentCloudDestination.raml │ │ │ ├── DeliveryFormat.raml │ │ │ ├── DeliveryPayload.raml │ │ │ ├── Destination.raml │ │ │ ├── EventBridgeDestination.raml │ │ │ ├── GoogleCloudPubSubDestination.raml │ │ │ ├── IronMqDestination.raml │ │ │ ├── MessageDeliveryPayload.raml │ │ │ ├── MessageSubscription.raml │ │ │ ├── MessageSubscriptionResourceTypeId.raml │ │ │ ├── PayloadNotIncluded.raml │ │ │ ├── PlatformFormat.raml │ │ │ ├── ResourceCreatedDeliveryPayload.raml │ │ │ ├── ResourceDeletedDeliveryPayload.raml │ │ │ ├── ResourceUpdatedDeliveryPayload.raml │ │ │ ├── SnsDestination.raml │ │ │ ├── SqsDestination.raml │ │ │ ├── Subscription.raml │ │ │ ├── SubscriptionDraft.raml │ │ │ ├── SubscriptionHealthStatus.raml │ │ │ ├── SubscriptionPagedQueryResponse.raml │ │ │ ├── SubscriptionUpdate.raml │ │ │ ├── SubscriptionUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── SubscriptionChangeDestinationAction.raml │ │ │ │ ├── SubscriptionSetChangesAction.raml │ │ │ │ ├── SubscriptionSetKeyAction.raml │ │ │ │ └── SubscriptionSetMessagesAction.raml │ │ ├── tax-category │ │ │ ├── SubRate.raml │ │ │ ├── TaxCategory.raml │ │ │ ├── TaxCategoryDraft.raml │ │ │ ├── TaxCategoryPagedQueryResponse.raml │ │ │ ├── TaxCategoryReference.raml │ │ │ ├── TaxCategoryResourceIdentifier.raml │ │ │ ├── TaxCategoryUpdate.raml │ │ │ ├── TaxCategoryUpdateAction.raml │ │ │ ├── TaxRate.raml │ │ │ ├── TaxRateDraft.raml │ │ │ └── updates │ │ │ │ ├── TaxCategoryAddTaxRateAction.raml │ │ │ │ ├── TaxCategoryChangeNameAction.raml │ │ │ │ ├── TaxCategoryRemoveTaxRateAction.raml │ │ │ │ ├── TaxCategoryReplaceTaxRateAction.raml │ │ │ │ ├── TaxCategorySetDescriptionAction.raml │ │ │ │ └── TaxCategorySetKeyAction.raml │ │ ├── type │ │ │ ├── CustomFieldBooleanType.raml │ │ │ ├── CustomFieldDateTimeType.raml │ │ │ ├── CustomFieldDateType.raml │ │ │ ├── CustomFieldEnumType.raml │ │ │ ├── CustomFieldEnumValue.raml │ │ │ ├── CustomFieldLocalizedEnumType.raml │ │ │ ├── CustomFieldLocalizedEnumValue.raml │ │ │ ├── CustomFieldLocalizedStringType.raml │ │ │ ├── CustomFieldMoneyType.raml │ │ │ ├── CustomFieldNumberType.raml │ │ │ ├── CustomFieldReferenceType.raml │ │ │ ├── CustomFieldReferenceValue.raml │ │ │ ├── CustomFieldSetType.raml │ │ │ ├── CustomFieldStringType.raml │ │ │ ├── CustomFieldTimeType.raml │ │ │ ├── CustomFieldValue.raml │ │ │ ├── CustomFields.raml │ │ │ ├── CustomFieldsDraft.raml │ │ │ ├── FieldContainer.raml │ │ │ ├── FieldDefinition.raml │ │ │ ├── FieldType.raml │ │ │ ├── ResourceTypeId.raml │ │ │ ├── Type.raml │ │ │ ├── TypeDraft.raml │ │ │ ├── TypePagedQueryResponse.raml │ │ │ ├── TypeReference.raml │ │ │ ├── TypeResourceIdentifier.raml │ │ │ ├── TypeTextInputHint.raml │ │ │ ├── TypeUpdate.raml │ │ │ ├── TypeUpdateAction.raml │ │ │ └── updates │ │ │ │ ├── TypeAddEnumValueAction.raml │ │ │ │ ├── TypeAddFieldDefinitionAction.raml │ │ │ │ ├── TypeAddLocalizedEnumValueAction.raml │ │ │ │ ├── TypeChangeEnumValueLabelAction.raml │ │ │ │ ├── TypeChangeEnumValueOrderAction.raml │ │ │ │ ├── TypeChangeFieldDefinitionLabelAction.raml │ │ │ │ ├── TypeChangeFieldDefinitionOrderAction.raml │ │ │ │ ├── TypeChangeInputHintAction.raml │ │ │ │ ├── TypeChangeKeyAction.raml │ │ │ │ ├── TypeChangeLabelAction.raml │ │ │ │ ├── TypeChangeLocalizedEnumValueLabelAction.raml │ │ │ │ ├── TypeChangeLocalizedEnumValueOrderAction.raml │ │ │ │ ├── TypeChangeNameAction.raml │ │ │ │ ├── TypeRemoveFieldDefinitionAction.raml │ │ │ │ └── TypeSetDescriptionAction.raml │ │ ├── types.raml │ │ └── zone │ │ │ ├── Location.raml │ │ │ ├── Zone.raml │ │ │ ├── ZoneDraft.raml │ │ │ ├── ZonePagedQueryResponse.raml │ │ │ ├── ZoneReference.raml │ │ │ ├── ZoneResourceIdentifier.raml │ │ │ ├── ZoneUpdate.raml │ │ │ ├── ZoneUpdateAction.raml │ │ │ └── updates │ │ │ ├── ZoneAddLocationAction.raml │ │ │ ├── ZoneChangeNameAction.raml │ │ │ ├── ZoneRemoveLocationAction.raml │ │ │ ├── ZoneSetDescriptionAction.raml │ │ │ └── ZoneSetKeyAction.raml │ └── update-actions.raml └── test │ ├── CHANGELOG.md │ ├── annotation-types │ └── annotations.raml │ ├── api.raml │ ├── examples │ ├── action-success.json │ ├── array-test-type-custom-1.json │ ├── array-test-type-custom-2.json │ ├── array-test-type.json │ ├── date-test-type.json │ ├── do-something-on-example-resource.json │ ├── example-nonconforming.json │ ├── example-resource-update.json │ ├── example.json │ ├── json-serializable-primitive-object.json │ ├── json-serializable-primitive-raw.json │ ├── object-test-type-draft.json │ ├── object-test-type.json │ ├── out-of-order-properties-test-type.json │ ├── product-example.json │ └── string-test-type.json │ ├── package.json │ ├── security-schemes │ └── oauth2.raml │ └── types │ ├── annotations-test-type.raml │ ├── any-properties-type.raml │ ├── any-test-type.raml │ ├── arrays.raml │ ├── constants.raml │ ├── date-test-type.raml │ ├── descriptions-with-urn-links.raml │ ├── enums.raml │ ├── examples.raml │ ├── link-test-types.raml │ ├── objects.raml │ ├── optional-property-test-type.raml │ ├── out-of-order-properties-test-type.raml │ ├── references.raml │ ├── regex-properties-type-array.raml │ ├── regex-properties-type-object.raml │ ├── regex-properties-type-string.raml │ ├── scalars.raml │ ├── soft-links.raml │ ├── type-overrides.raml │ └── unions.raml ├── babel.config.js ├── commitlint.config.js ├── constraints.pro ├── cypress.config.cucumber.ts ├── cypress.config.ts ├── cypress ├── .eslintrc.yaml ├── e2e │ ├── api-docs-smoke-test │ │ └── api-type-soft-linking.cy.ts │ ├── docs-smoke-test │ │ ├── ai-assistant.cy.ts │ │ ├── child-sections-nav.cy.ts │ │ ├── links.cy.ts │ │ ├── menu-navigation.cy.ts │ │ ├── pagination.cy.ts │ │ ├── sections.cy.ts │ │ ├── site-overrides.cy.ts │ │ ├── static-pages.cy.ts │ │ ├── top-menu.cy.ts │ │ └── viewports.cy.ts │ └── self-learning-smoke-test │ │ ├── 01-login.feature │ │ ├── 01-login.ts │ │ ├── 02-profile-modal.feature │ │ ├── 02-profile-modal.ts │ │ ├── 03-logout.feature │ │ ├── 04-quiz.feature │ │ ├── 04-quiz.ts │ │ ├── 05-status-indicators.feature │ │ ├── 05-status-indicators.ts │ │ ├── 99-cleanup.feature │ │ └── e2e.const.ts ├── fixtures │ └── example.json ├── global.d.ts ├── plugins │ └── index.js ├── support │ ├── commands.ts │ ├── e2e.ts │ ├── env.ts │ ├── step_definitions │ │ └── common.steps.ts │ └── urls.ts └── tsconfig.json ├── jest-runner-eslint.config.js ├── jest.eslint.config.js ├── jest.test.config.js ├── linkcheck-local-skip-list ├── linkinator.config.json ├── linkinator.remote.config.json ├── lint-staged.config.js ├── package.json ├── packages ├── gatsby-theme-api-docs │ ├── .eslintrc.yml │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── gatsby-config.mjs │ ├── gatsby-node.mjs │ ├── index.js │ ├── package.json │ ├── shortcodes.js │ └── src │ │ ├── components │ │ ├── description.js │ │ ├── info-value.js │ │ ├── info.js │ │ ├── required.js │ │ ├── resource-method.js │ │ ├── resource │ │ │ ├── method │ │ │ │ ├── headers.js │ │ │ │ ├── index.js │ │ │ │ ├── method.js │ │ │ │ ├── parameters.js │ │ │ │ ├── query-parameters.js │ │ │ │ ├── request-representation.js │ │ │ │ ├── request-response-examples.js │ │ │ │ ├── responses.js │ │ │ │ ├── scopes.tsx │ │ │ │ ├── title.js │ │ │ │ └── url.js │ │ │ ├── resource-by-api-key.js │ │ │ └── resource.js │ │ ├── table.js │ │ └── type │ │ │ ├── enum.js │ │ │ ├── examples.js │ │ │ ├── properties │ │ │ ├── properties.js │ │ │ ├── regex-properties.js │ │ │ └── rows │ │ │ │ ├── description.js │ │ │ │ ├── name-type.js │ │ │ │ └── rows.js │ │ │ ├── type-by-api-key.js │ │ │ └── type.js │ │ ├── design-system.js │ │ ├── hooks │ │ ├── use-api-resources.js │ │ ├── use-api-types.js │ │ ├── use-apis.js │ │ ├── use-endpoint-location-overrides.js │ │ ├── use-endpoint-locations.js │ │ ├── use-read-resource-by-resource-path.js │ │ ├── use-type-location-overrides.js │ │ ├── use-type-locations.js │ │ └── use-type-to-render.js │ │ └── utils │ │ ├── capitalize-first.js │ │ ├── constants.js │ │ ├── ctp-urn.js │ │ ├── extract-additional-info.js │ │ ├── extract-additional-info.spec.js │ │ ├── generate-type-display-text.js │ │ ├── generate-type-to-render.js │ │ ├── render-type-as-link.js │ │ ├── report-error.js │ │ └── transform-urn-links-plugin.js ├── gatsby-theme-code-examples │ ├── CHANGELOG.md │ ├── README.md │ ├── gatsby-config.mjs │ ├── gatsby-node.mjs │ ├── index.js │ ├── package.json │ ├── shortcodes.js │ └── src │ │ ├── code-example.js │ │ ├── multi-code-example.js │ │ └── use-code-examples.js ├── gatsby-theme-constants │ ├── CHANGELOG.md │ ├── README.md │ ├── gatsby-config.mjs │ ├── gatsby-node.mjs │ ├── index.js │ ├── package.json │ ├── shortcodes.js │ └── src │ │ ├── constant.js │ │ └── use-constant.js ├── gatsby-theme-docs │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ └── create-release-note.js │ ├── color-presets │ │ ├── base │ │ │ ├── hero-background.svg │ │ │ └── index.mjs │ │ └── index.mjs │ ├── configure-theme.mjs │ ├── gatsby-browser.js │ ├── gatsby-config.mjs │ ├── gatsby-node.mjs │ ├── gatsby-ssr.js │ ├── globals.css │ ├── index.js │ ├── package.json │ ├── patches │ │ └── gatsby-plugin-mdx.patch │ ├── src │ │ ├── components │ │ │ ├── LearningObjectivesCard │ │ │ │ └── LearningObjectivesCard.tsx │ │ │ ├── SelfLearningContentNotification │ │ │ │ └── SelfLearningContentNotification.tsx │ │ │ ├── advanced-search-filter.tsx │ │ │ ├── algolia-search.js │ │ │ ├── anchor.js │ │ │ ├── authenticated-context.tsx │ │ │ ├── beta-tag.js │ │ │ ├── burger-icon.js │ │ │ ├── card.js │ │ │ ├── cards.js │ │ │ ├── child-sections-nav.js │ │ │ ├── config-context.ts │ │ │ ├── content-pagination.js │ │ │ ├── content-pagination.spec.js │ │ │ ├── error-boundary.js │ │ │ ├── global-navigation-link.js │ │ │ ├── global-notification.js │ │ │ ├── glossary-placeholder.js │ │ │ ├── index.js │ │ │ ├── link.js │ │ │ ├── link.spec.js │ │ │ ├── overlay.js │ │ │ ├── page-feedback-buttons.tsx │ │ │ ├── page-feedback.tsx │ │ │ ├── page-redirection.ts │ │ │ ├── plan-tag-internal.js │ │ │ ├── plan-tag.js │ │ │ ├── release-note-heading.js │ │ │ ├── release-notes-subscribe-links.js │ │ │ ├── search-dialog.js │ │ │ ├── search-dialog.spec.js │ │ │ ├── search-input.js │ │ │ ├── seo.js │ │ │ ├── side-by-side.js │ │ │ ├── sidebar-context.js │ │ │ ├── theme-provider.js │ │ │ ├── top-menu-components.js │ │ │ ├── top-menu-components.spec.js │ │ │ ├── top-menu-feedback-banner.js │ │ │ ├── top-menu-item.js │ │ │ ├── top-menu-mobile.js │ │ │ ├── top-menu.js │ │ │ ├── user-research-banner.js │ │ │ ├── video-placeholder.js │ │ │ ├── video-player-client-side.js │ │ │ └── video-player.js │ │ ├── content │ │ │ └── 404.mdx │ │ ├── data │ │ │ ├── footer-links.yaml │ │ │ ├── footer.yaml │ │ │ ├── top-menu.yaml │ │ │ └── top-side-menu.yaml │ │ ├── fonts │ │ │ └── Inter │ │ │ │ ├── Inter-italic.var.woff2 │ │ │ │ ├── Inter-roman.var.woff2 │ │ │ │ └── inter.css │ │ ├── hooks │ │ │ ├── use-active-section.js │ │ │ ├── use-async-complete.js │ │ │ ├── use-filtered-release-notes.js │ │ │ ├── use-is-client-side.js │ │ │ ├── use-layout-state.js │ │ │ ├── use-page-data.js │ │ │ ├── use-page-toc.js │ │ │ ├── use-previous.js │ │ │ ├── use-release-notes-config.js │ │ │ ├── use-release-notes-topics.js │ │ │ ├── use-scroll-position.js │ │ │ ├── use-scroll-spy.js │ │ │ ├── use-sidebar-navigation-items.js │ │ │ ├── use-site-data.js │ │ │ └── use-top-menu-items.js │ │ ├── icons │ │ │ ├── assistant-thumbs-down-filled.png │ │ │ ├── assistant-thumbs-down.png │ │ │ ├── assistant-thumbs-up-filled.png │ │ │ └── assistant-thumbs-up.png │ │ ├── layouts │ │ │ ├── content-homepage.js │ │ │ ├── content.js │ │ │ ├── internals │ │ │ │ ├── footer.js │ │ │ │ ├── layout-application.js │ │ │ │ ├── layout-design-config.ts │ │ │ │ ├── layout-design-utils.ts │ │ │ │ ├── layout-footer.js │ │ │ │ ├── layout-global-notification.js │ │ │ │ ├── layout-header-logo.js │ │ │ │ ├── layout-header.js │ │ │ │ ├── layout-main.js │ │ │ │ ├── layout-page-content.js │ │ │ │ ├── layout-page-header.js │ │ │ │ ├── layout-page-navigation.js │ │ │ │ ├── layout-page-with-hero.js │ │ │ │ ├── layout-page-wrapper.js │ │ │ │ ├── layout-page.js │ │ │ │ ├── layout-release-note-body.js │ │ │ │ ├── layout-release-note.js │ │ │ │ ├── layout-sidebar.js │ │ │ │ ├── page-content-inset.js │ │ │ │ ├── page-navigation.js │ │ │ │ ├── page-navigation.spec.js │ │ │ │ ├── page-read-time-estimation.js │ │ │ │ ├── self-learning │ │ │ │ │ └── sidebar.js │ │ │ │ ├── sidebar.js │ │ │ │ └── sidebar.utils.js │ │ │ ├── layout-release-note-page-header-side.js │ │ │ ├── release-notes-detail.js │ │ │ └── release-notes-list.js │ │ ├── markdown-components.js │ │ ├── modules │ │ │ ├── ai-assistant │ │ │ │ ├── README.md │ │ │ │ ├── components │ │ │ │ │ ├── ai-assistant-launch-button.tsx │ │ │ │ │ ├── chat-feedback-modal.jsx │ │ │ │ │ ├── chat-messages.jsx │ │ │ │ │ ├── chat-modal-css-components.js │ │ │ │ │ ├── chat-modal-legal-disclaimer.jsx │ │ │ │ │ ├── chat-modal-loading.js │ │ │ │ │ ├── chat-modal-logged-out.jsx │ │ │ │ │ ├── chat-modal-not-verified.jsx │ │ │ │ │ ├── chat-modal.jsx │ │ │ │ │ ├── chat-references-list.jsx │ │ │ │ │ ├── chat-side.js │ │ │ │ │ ├── chat.const.js │ │ │ │ │ ├── chat.utils.js │ │ │ │ │ └── code-generator-sidebar.jsx │ │ │ │ ├── hooks │ │ │ │ │ ├── use-ai-assistant.ts │ │ │ │ │ └── use-chat-init.ts │ │ │ │ ├── icons │ │ │ │ │ ├── assistant-chef.svg │ │ │ │ │ ├── assistant-code.png │ │ │ │ │ ├── assistant-icon.svg │ │ │ │ │ ├── black-white-ct-cube.svg │ │ │ │ │ ├── paper-plane.png │ │ │ │ │ └── robot.png │ │ │ │ └── index.js │ │ │ ├── self-learning │ │ │ │ ├── README.md │ │ │ │ ├── components │ │ │ │ │ ├── course-card.tsx │ │ │ │ │ ├── course-complete-modal.spec.ts │ │ │ │ │ ├── course-complete-modal.tsx │ │ │ │ │ ├── first-name.tsx │ │ │ │ │ ├── if-learning-path.tsx │ │ │ │ │ ├── if-user-logged.tsx │ │ │ │ │ ├── image-card.tsx │ │ │ │ │ ├── learning-path-card-home.tsx │ │ │ │ │ ├── learning-path-card.tsx │ │ │ │ │ ├── login-or-guest.tsx │ │ │ │ │ ├── page-ready-context.tsx │ │ │ │ │ ├── page-ready.tsx │ │ │ │ │ ├── profile-modal.tsx │ │ │ │ │ ├── profile.utils.ts │ │ │ │ │ ├── quiz-form.tsx │ │ │ │ │ ├── quiz.tsx │ │ │ │ │ ├── quiz.types.ts │ │ │ │ │ ├── quiz.utils.spec.ts │ │ │ │ │ ├── quiz.utils.ts │ │ │ │ │ ├── refresher-card.tsx │ │ │ │ │ ├── sidebar-course-status.tsx │ │ │ │ │ ├── sidebar-topic-status.tsx │ │ │ │ │ ├── user-profile-init.tsx │ │ │ │ │ └── verify-email-button.tsx │ │ │ │ ├── external-types.d.ts │ │ │ │ └── hooks │ │ │ │ │ ├── hooks.utils.ts │ │ │ │ │ ├── use-attempt.ts │ │ │ │ │ ├── use-auth-token.ts │ │ │ │ │ ├── use-badges.ts │ │ │ │ │ ├── use-course-details.ts │ │ │ │ │ ├── use-course-pages.ts │ │ │ │ │ ├── use-course-status.ts │ │ │ │ │ ├── use-is-client-side.ts │ │ │ │ │ ├── use-send-verification-email.ts │ │ │ │ │ ├── use-submit-attempt.ts │ │ │ │ │ └── use-update-user.ts │ │ │ └── sso │ │ │ │ ├── README.md │ │ │ │ ├── components │ │ │ │ ├── avatar.js │ │ │ │ ├── login-button.tsx │ │ │ │ ├── login-component.spec.tsx │ │ │ │ ├── primary-button.tsx │ │ │ │ ├── secondary-button.tsx │ │ │ │ ├── sso.utils.spec.ts │ │ │ │ ├── sso.utils.ts │ │ │ │ └── verify-button.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-authentication.ts │ │ │ │ └── use-local-storage-session.ts │ │ │ │ ├── icons │ │ │ │ ├── CtCubeWhite.js │ │ │ │ ├── CtCubeWhiteNew.js │ │ │ │ ├── LoginIcon.tsx │ │ │ │ ├── commercetools_ID_logo.svg │ │ │ │ └── commercetools_id_logo_white.svg │ │ │ │ ├── sso.const.ts │ │ │ │ └── utils │ │ │ │ ├── analytics.utils.ts │ │ │ │ └── common.utils.ts │ │ ├── overrides │ │ │ ├── README.md │ │ │ ├── layout-page-header-side.js │ │ │ ├── markdown-components.js │ │ │ ├── page-header-banner-area.js │ │ │ ├── page-header-side.js │ │ │ ├── plan-tags-config.js │ │ │ ├── top-menu-banner-area.js │ │ │ ├── topbar-login-info.js │ │ │ └── use-additional-site-data.js │ │ ├── plugins │ │ │ ├── rehype-id-slug.mjs │ │ │ ├── rehype-mdx-section.mjs │ │ │ └── remark-mdx-mermaid.mjs │ │ ├── templates │ │ │ ├── homepage.js │ │ │ ├── page-content.js │ │ │ ├── release-notes-detail.js │ │ │ └── release-notes-list.js │ │ └── utils │ │ │ ├── get-env.js │ │ │ ├── release-notes.js │ │ │ ├── release-notes.spec.js │ │ │ ├── report-error-to-sentry.js │ │ │ └── scroll-to-top.js │ ├── static │ │ ├── favicon-dark-32x32.png │ │ ├── favicon-dark.png │ │ ├── favicon-light-32x32.png │ │ ├── favicon-light.png │ │ └── fonts │ │ │ └── Inter.var.woff2 │ └── utils │ │ ├── bootstrap-theme-addons.mjs │ │ ├── create-emotion-cache.js │ │ ├── default-options.mjs │ │ ├── extract-shortcode-occurrence.js │ │ ├── generate-toc.mjs │ │ └── slug-pre-process.mjs ├── gatsby-transformer-mdx-introspection │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── complex.mdx.test │ │ ├── detached.mdx.test │ │ ├── integration.js │ │ ├── jsx-ast-utils.js │ │ └── reduce-jsx-ast.js │ ├── gatsby-node.js │ ├── index.js │ ├── package.json │ └── src │ │ ├── jsx-ast-utils.js │ │ ├── reduce-jsx-ast.js │ │ └── transform-mdx.js ├── gatsby-transformer-raml │ ├── CHANGELOG.md │ ├── README.md │ ├── gatsby-node.mjs │ ├── index.js │ ├── package.json │ └── src │ │ ├── create-api-node.mjs │ │ ├── create-js-yaml-schema.mjs │ │ ├── create-resource-node.mjs │ │ ├── create-type-node.mjs │ │ ├── schema │ │ ├── define-raml-api.mjs │ │ ├── define-raml-generic.mjs │ │ ├── define-raml-resource.mjs │ │ ├── define-raml-type.mjs │ │ ├── define-schema.mjs │ │ └── index.mjs │ │ └── utils │ │ ├── api │ │ └── do-recursion.mjs │ │ ├── compute-type.mjs │ │ ├── compute-type.spec.js │ │ ├── properties-to-array.mjs │ │ ├── properties-to-array.spec.js │ │ ├── resource │ │ ├── code-examples-to-array.mjs │ │ ├── code-examples-to-array.spec.js │ │ ├── do-recursion.mjs │ │ ├── do-recursion.spec.js │ │ ├── examples-to-array.mjs │ │ ├── headers-to-array.mjs │ │ ├── process-methods.mjs │ │ ├── responses-to-array.mjs │ │ └── responses-to-array.spec.js │ │ ├── sort-properties.mjs │ │ ├── sort-properties.spec.js │ │ └── type │ │ ├── do-recursion.mjs │ │ ├── generate-built-in-type.mjs │ │ ├── generate-built-in-type.spec.js │ │ ├── generate-type.mjs │ │ ├── generate-type.spec.js │ │ ├── resolve-conflicting-field-types.mjs │ │ └── resolve-conflicting-field-types.spec.js ├── ui-kit │ ├── CHANGELOG.md │ ├── README.md │ ├── global.d.ts │ ├── index.ts │ ├── package.json │ └── src │ │ ├── components │ │ ├── card-elements.tsx │ │ ├── code-block.tsx │ │ ├── content-notifications.tsx │ │ ├── dialogs │ │ │ ├── confirmation-dialog │ │ │ │ ├── README.md │ │ │ │ ├── confirmation-dialog.tsx │ │ │ │ └── index.ts │ │ │ ├── form-dialog │ │ │ │ ├── README.md │ │ │ │ ├── form-dialog.tsx │ │ │ │ └── index.ts │ │ │ ├── info-dialog │ │ │ │ ├── README.md │ │ │ │ ├── index.ts │ │ │ │ └── info-dialog.tsx │ │ │ └── internals │ │ │ │ ├── dialog-container.tsx │ │ │ │ ├── dialog-content.tsx │ │ │ │ ├── dialog-footer.tsx │ │ │ │ ├── dialog-header.tsx │ │ │ │ └── dialog.styles.ts │ │ ├── globals.tsx │ │ ├── link.ts │ │ ├── logo-button.tsx │ │ ├── lord-icon-button-styles.ts │ │ ├── lord-icon-button.tsx │ │ ├── lord-icon-client-side.tsx │ │ ├── lord-icon.tsx │ │ ├── markdown.tsx │ │ ├── media-query.ts │ │ ├── mermaid-client-side.tsx │ │ ├── mermaid.tsx │ │ ├── multi-code-block.tsx │ │ ├── multi-path-block │ │ │ ├── index.tsx │ │ │ └── useArrowNavigation.ts │ │ ├── portals-container │ │ │ ├── index.ts │ │ │ └── portals-container.tsx │ │ ├── reset.tsx │ │ ├── rss │ │ │ ├── rss-feed-table.tsx │ │ │ ├── rss-feeds.spec.ts │ │ │ └── rss-feeds.tsx │ │ ├── subtitle.ts │ │ └── text-small.ts │ │ ├── design-system.ts │ │ ├── hooks │ │ ├── use-iso310-number-formatter.spec.tsx │ │ ├── use-iso310-number-formatter.ts │ │ ├── use-lazy-load.ts │ │ ├── use-modal-state.ts │ │ ├── use-mutation-observer-polyfill.ts │ │ ├── use-mutation-observer.ts │ │ └── use-selected-path.ts │ │ ├── icons │ │ ├── .gitattributes │ │ ├── generated │ │ │ ├── B2BTag.tsx │ │ │ ├── CtBannerForFooter.tsx │ │ │ ├── CtCubeForFooter.tsx │ │ │ ├── CtLogo.tsx │ │ │ ├── CtLogoForFooter.tsx │ │ │ ├── CustomApplication.tsx │ │ │ ├── CustomApplicationSmall.tsx │ │ │ ├── HttpApi.tsx │ │ │ ├── HttpApiSmall.tsx │ │ │ ├── Logo.tsx │ │ │ ├── LogoHorizontal.tsx │ │ │ ├── LordIconApi.tsx │ │ │ ├── LordIconBook.tsx │ │ │ ├── LordIconBookShelf.tsx │ │ │ ├── LordIconBuilding.tsx │ │ │ ├── LordIconCli.tsx │ │ │ ├── LordIconCommand.tsx │ │ │ ├── LordIconDocument.tsx │ │ │ ├── LordIconFlag.tsx │ │ │ ├── LordIconFree.tsx │ │ │ ├── LordIconGraduation.tsx │ │ │ ├── LordIconHandshake.tsx │ │ │ ├── LordIconHeadset.tsx │ │ │ ├── LordIconHeartbeat.tsx │ │ │ ├── LordIconLogin.tsx │ │ │ ├── LordIconMmApi.tsx │ │ │ ├── LordIconMmBuilding.tsx │ │ │ ├── LordIconMmCommand.tsx │ │ │ ├── LordIconMmDocument.tsx │ │ │ ├── LordIconMmFlag.tsx │ │ │ ├── LordIconMmFree.tsx │ │ │ ├── LordIconMmGlossary.tsx │ │ │ ├── LordIconMmGraduation.tsx │ │ │ ├── LordIconMmHandshake.tsx │ │ │ ├── LordIconMmHeadset.tsx │ │ │ ├── LordIconMmHeartbeat.tsx │ │ │ ├── LordIconMmLogin.tsx │ │ │ ├── LordIconMmPackage.tsx │ │ │ ├── LordIconMmPadlock.tsx │ │ │ ├── LordIconMmSpreadsheet.tsx │ │ │ ├── LordIconMmUnlocked.tsx │ │ │ ├── LordIconPackage.tsx │ │ │ ├── LordIconProgrammingBook.tsx │ │ │ ├── LordIconQuestionnaire.tsx │ │ │ ├── LordIconSpreadsheet.tsx │ │ │ ├── LordIconSpreadsheet2.tsx │ │ │ ├── LordIconUnlocked.tsx │ │ │ ├── MerchantCenter.tsx │ │ │ ├── MerchantCenterSmall.tsx │ │ │ ├── OpenSource.tsx │ │ │ ├── OpenSourceSmall.tsx │ │ │ ├── ReleaseNotes.tsx │ │ │ ├── Ribbon.tsx │ │ │ ├── Rss.tsx │ │ │ ├── Search.tsx │ │ │ ├── Slash.tsx │ │ │ ├── StackedLinesIndentedIcon.tsx │ │ │ ├── Tutorials.tsx │ │ │ ├── TutorialsSmall.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── lord-icon │ │ │ ├── book-shelf.json │ │ │ ├── book.json │ │ │ ├── cli.json │ │ │ ├── mm-api.json │ │ │ ├── mm-building.json │ │ │ ├── mm-command.json │ │ │ ├── mm-document.json │ │ │ ├── mm-flag.json │ │ │ ├── mm-free.json │ │ │ ├── mm-glossary.json │ │ │ ├── mm-graduation.json │ │ │ ├── mm-handshake.json │ │ │ ├── mm-headset.json │ │ │ ├── mm-heartbeat.json │ │ │ ├── mm-login.json │ │ │ ├── mm-package.json │ │ │ ├── mm-padlock.json │ │ │ ├── mm-spreadsheet.json │ │ │ ├── mm-unlocked.json │ │ │ ├── programming-book.json │ │ │ ├── questionnaire.json │ │ │ └── spreadsheet2.json │ │ └── svg │ │ │ ├── HTTP-API-small.svg │ │ │ ├── HTTP-API.svg │ │ │ ├── b2b-tag.svg │ │ │ ├── ct-banner-for-footer.svg │ │ │ ├── ct-cube-for-footer.svg │ │ │ ├── ct-logo.svg │ │ │ ├── custom-application-small.svg │ │ │ ├── custom-application.svg │ │ │ ├── logo-horizontal.svg │ │ │ ├── logo.svg │ │ │ ├── lord-icon-book-shelf.svg │ │ │ ├── lord-icon-book.svg │ │ │ ├── lord-icon-cli.svg │ │ │ ├── lord-icon-mm-api.svg │ │ │ ├── lord-icon-mm-building.svg │ │ │ ├── lord-icon-mm-command.svg │ │ │ ├── lord-icon-mm-document.svg │ │ │ ├── lord-icon-mm-flag.svg │ │ │ ├── lord-icon-mm-free.svg │ │ │ ├── lord-icon-mm-glossary.svg │ │ │ ├── lord-icon-mm-graduation.svg │ │ │ ├── lord-icon-mm-handshake.svg │ │ │ ├── lord-icon-mm-headset.svg │ │ │ ├── lord-icon-mm-heartbeat.svg │ │ │ ├── lord-icon-mm-login.svg │ │ │ ├── lord-icon-mm-package.svg │ │ │ ├── lord-icon-mm-padlock.svg │ │ │ ├── lord-icon-mm-spreadsheet.svg │ │ │ ├── lord-icon-mm-unlocked.svg │ │ │ ├── lord-icon-programming-book.svg │ │ │ ├── lord-icon-questionnaire.svg │ │ │ ├── lord-icon-spreadsheet2.svg │ │ │ ├── merchant-center-small.svg │ │ │ ├── merchant-center.svg │ │ │ ├── open-source-small.svg │ │ │ ├── open-source.svg │ │ │ ├── release-notes.svg │ │ │ ├── ribbon.svg │ │ │ ├── rss.svg │ │ │ ├── search.svg │ │ │ ├── slash.svg │ │ │ ├── stacked-lines-indented-icon.svg │ │ │ ├── tutorials-small.svg │ │ │ └── tutorials.svg │ │ ├── index.ts │ │ ├── prism-themes │ │ ├── commercetools.ts │ │ └── commercetoolsLight.ts │ │ └── utils │ │ ├── code-block-parse-options.ts │ │ ├── copy-to-clipboard.ts │ │ ├── create-styled-icon.ts │ │ ├── css-variables.spec.ts │ │ ├── css-variables.ts │ │ ├── dates.ts │ │ ├── lord-icon.ts │ │ ├── markdown-fragment-to-react.d.ts │ │ ├── markdown-fragment-to-react.js │ │ ├── parse-numeric-range.ts │ │ └── safe-html-element.ts └── writing-style │ ├── .gitignore │ ├── .npmignore │ ├── .vale.ini │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ ├── commercetools-vale-bin.js │ └── commercetools-vale.js │ ├── package.json │ ├── scripts │ ├── download-google-styles.js │ ├── download-vale.js │ └── download-writegood-styles.js │ ├── src │ └── run.js │ ├── styles │ ├── Google │ │ ├── AMPM.yml │ │ ├── Acronyms.yml │ │ ├── Colons.yml │ │ ├── Contractions.yml │ │ ├── DateFormat.yml │ │ ├── Ellipses.yml │ │ ├── EmDash.yml │ │ ├── EnDash.yml │ │ ├── Exclamation.yml │ │ ├── FirstPerson.yml │ │ ├── Gender.yml │ │ ├── GenderBias.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Latin.yml │ │ ├── LyHyphens.yml │ │ ├── OptionalPlurals.yml │ │ ├── Ordinal.yml │ │ ├── OxfordComma.yml │ │ ├── Parens.yml │ │ ├── Passive.yml │ │ ├── Periods.yml │ │ ├── Quotes.yml │ │ ├── Ranges.yml │ │ ├── Semicolons.yml │ │ ├── Slang.yml │ │ ├── Spacing.yml │ │ ├── Spelling.yml │ │ ├── Units.yml │ │ ├── We.yml │ │ ├── Will.yml │ │ ├── WordList.yml │ │ ├── meta.json │ │ └── vocab.txt │ ├── commercetools │ │ ├── Acronyms.yml │ │ ├── Brand.yml │ │ ├── CorporateSpeak.yml │ │ ├── Currency.yml │ │ ├── DateFormat.yml │ │ ├── DiscriminatoryWords.yml │ │ ├── FirstPerson.yml │ │ ├── Headings.yml │ │ ├── Incomplete.yml │ │ ├── PortfolioNaming.yml │ │ ├── Product.yml │ │ ├── Units.yml │ │ ├── We.yml │ │ ├── Weasel.yml │ │ ├── WordList-CaseSensitive.yml │ │ ├── WordList-Suggestions.yml │ │ └── WordList.yml │ ├── vocab.txt │ └── write-good │ │ ├── Cliches.yml │ │ ├── E-Prime.yml │ │ ├── Illusions.yml │ │ ├── Passive.yml │ │ ├── README.md │ │ ├── So.yml │ │ ├── ThereIs.yml │ │ ├── TooWordy.yml │ │ ├── Weasel.yml │ │ └── meta.json │ └── vale-bin │ └── .gitignore ├── recommended.code-workspace ├── scripts ├── build.sh ├── create-new-microsite.js ├── create-new-microsite.sh ├── gatsby-cache.mjs └── postinstall.sh ├── setup-test-framework.js ├── svgr.config.js ├── transform-file.js ├── tsconfig.json ├── type-definition ├── png.d.ts └── svg.d.ts ├── vercel.json ├── websites ├── api-docs-smoke-test │ ├── .eslintrc.yml │ ├── CHANGELOG.md │ ├── gatsby-config.mjs │ ├── package.json │ ├── scripts │ │ └── build.sh │ ├── shortcodes.js │ └── src │ │ ├── @commercetools-docs │ │ └── gatsby-theme-docs │ │ │ └── overrides │ │ │ ├── .gitignore │ │ │ ├── markdown-components.js │ │ │ └── page-header-side.js │ │ ├── api-specs │ │ └── .gitignore │ │ ├── content │ │ ├── docs-replications │ │ │ └── long-page.mdx │ │ ├── e2e-tests │ │ │ ├── soft-linking-first-page.mdx │ │ │ └── soft-linking-second-page.mdx │ │ ├── endpoints │ │ │ ├── endpoints-for-resource.mdx │ │ │ └── methods.mdx │ │ ├── index.mdx │ │ ├── layouts │ │ │ ├── endpoint-large-desktop.mdx │ │ │ ├── endpoint-regular-desktop.mdx │ │ │ ├── type-large-desktop.mdx │ │ │ └── type-regular-desktop.mdx │ │ ├── releases.mdx │ │ └── types │ │ │ ├── enums-constants-unions.mdx │ │ │ ├── examples.mdx │ │ │ ├── general.mdx │ │ │ └── scalars.mdx │ │ ├── data │ │ ├── endpoint-locations.yaml │ │ ├── navigation.yaml │ │ └── type-locations.yaml │ │ ├── icons │ │ └── github.svg │ │ └── releases │ │ ├── test-api-docs-release-note.mdx │ │ └── test-release-note-two.mdx ├── docs-smoke-test │ ├── .eslintrc.yml │ ├── CHANGELOG.md │ ├── docs-release-notes-config.yml │ ├── gatsby-config.mjs │ ├── package.json │ ├── scripts │ │ └── build.sh │ ├── src │ │ ├── @commercetools-docs │ │ │ └── gatsby-theme-docs │ │ │ │ └── overrides │ │ │ │ ├── .gitignore │ │ │ │ ├── layout-page-header-side.js │ │ │ │ ├── markdown-components.js │ │ │ │ ├── page-header-banner-area.js │ │ │ │ └── page-header-side.js │ │ ├── code-examples │ │ │ ├── example.console │ │ │ ├── example.cs │ │ │ ├── example.curl │ │ │ ├── example.graphql │ │ │ ├── example.java │ │ │ ├── example.js │ │ │ ├── example.json │ │ │ ├── example.jsx │ │ │ ├── example.php │ │ │ ├── example.scala │ │ │ ├── example.sh │ │ │ ├── example.ts │ │ │ └── example.yml │ │ ├── constants │ │ │ └── limits.yaml │ │ ├── content │ │ │ ├── beta.mdx │ │ │ ├── components │ │ │ │ ├── ai-assistant.mdx │ │ │ │ ├── cards.mdx │ │ │ │ ├── child-section-navigation.mdx │ │ │ │ ├── code-blocks.mdx │ │ │ │ ├── code-examples.mdx │ │ │ │ ├── content-notifications.mdx │ │ │ │ ├── images.mdx │ │ │ │ ├── mermaid-diagram.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── rss-feeds.mdx │ │ │ │ └── video-player.mdx │ │ │ ├── empty-pages-2 │ │ │ │ ├── empty-page-eight.mdx │ │ │ │ ├── empty-page-eleven.mdx │ │ │ │ ├── empty-page-five.mdx │ │ │ │ ├── empty-page-four.mdx │ │ │ │ ├── empty-page-fourteen.mdx │ │ │ │ ├── empty-page-nine.mdx │ │ │ │ ├── empty-page-one.mdx │ │ │ │ ├── empty-page-seven.mdx │ │ │ │ ├── empty-page-six.mdx │ │ │ │ ├── empty-page-ten.mdx │ │ │ │ ├── empty-page-thirteen.mdx │ │ │ │ ├── empty-page-three.mdx │ │ │ │ ├── empty-page-twelve.mdx │ │ │ │ ├── empty-page-two.mdx │ │ │ │ ├── overview-1.mdx │ │ │ │ └── overview.mdx │ │ │ ├── empty-pages │ │ │ │ ├── empty-page-eight.mdx │ │ │ │ ├── empty-page-eleven.mdx │ │ │ │ ├── empty-page-five.mdx │ │ │ │ ├── empty-page-four.mdx │ │ │ │ ├── empty-page-fourteen.mdx │ │ │ │ ├── empty-page-nine.mdx │ │ │ │ ├── empty-page-one.mdx │ │ │ │ ├── empty-page-seven.mdx │ │ │ │ ├── empty-page-six.mdx │ │ │ │ ├── empty-page-ten.mdx │ │ │ │ ├── empty-page-thirteen.mdx │ │ │ │ ├── empty-page-three.mdx │ │ │ │ ├── empty-page-twelve.mdx │ │ │ │ ├── empty-page-two.mdx │ │ │ │ ├── overview-1.mdx │ │ │ │ └── overview.mdx │ │ │ ├── files │ │ │ │ ├── svg-with-full-width.svg │ │ │ │ └── svg-with-transparent-background.svg │ │ │ ├── index.mdx │ │ │ ├── plan.mdx │ │ │ ├── releases.mdx │ │ │ └── views │ │ │ │ ├── beta.mdx │ │ │ │ ├── code-blocks.mdx │ │ │ │ ├── code-examples.mdx │ │ │ │ ├── custom-anchor.mdx │ │ │ │ ├── empty.mdx │ │ │ │ ├── links.mdx │ │ │ │ ├── markdown.mdx │ │ │ │ ├── multi-path-block.mdx │ │ │ │ ├── nested-headings.mdx │ │ │ │ ├── nested │ │ │ │ └── link-target.mdx │ │ │ │ ├── overrides.mdx │ │ │ │ ├── overview.mdx │ │ │ │ ├── plan-tag.mdx │ │ │ │ ├── two-level-index-nav.mdx │ │ │ │ └── wide.mdx │ │ ├── data │ │ │ └── navigation.yaml │ │ ├── icons │ │ │ ├── .gitattributes │ │ │ ├── generated │ │ │ │ ├── CardBannerApi.js │ │ │ │ ├── CardBannerDefault.js │ │ │ │ ├── CardBannerMc.js │ │ │ │ ├── CardBannerOptional1.js │ │ │ │ ├── CardBannerOptional2.js │ │ │ │ ├── CardBannerOss.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── svg │ │ │ │ ├── card-banner-api.svg │ │ │ │ ├── card-banner-default.svg │ │ │ │ ├── card-banner-mc.svg │ │ │ │ ├── card-banner-optional-1.svg │ │ │ │ ├── card-banner-optional-2.svg │ │ │ │ └── card-banner-oss.svg │ │ ├── images │ │ │ ├── 1200x300.jpg │ │ │ ├── 200.jpg │ │ │ ├── 300x900.jpg │ │ │ ├── subfolder-in-images │ │ │ │ └── 1200x300.jpg │ │ │ └── transparent-bkg.png │ │ ├── releases │ │ │ ├── archive │ │ │ │ ├── 2019 │ │ │ │ │ └── lorem.mdx │ │ │ │ ├── announcement.mdx │ │ │ │ ├── release-note-with-newest-date.mdx │ │ │ │ ├── test-release-note-one.mdx │ │ │ │ └── test-release-note-three.mdx │ │ │ ├── excerpt-rendering-test.mdx │ │ │ ├── release-format-definition.mdx │ │ │ ├── release-note-template.mdx │ │ │ ├── release-note-with-index-frontmatters.mdx │ │ │ └── release-note-without-product-labels.mdx │ │ └── topics │ │ │ ├── complex-blockquote.mdx │ │ │ └── list-items.mdx │ └── static │ │ ├── downloads │ │ ├── hello.json │ │ └── hello.txt │ │ └── html │ │ └── hello.html ├── documentation │ ├── .eslintrc.yml │ ├── CHANGELOG.md │ ├── gatsby-config.mjs │ ├── package.json │ ├── src │ │ ├── @commercetools-docs │ │ │ └── gatsby-theme-docs │ │ │ │ └── overrides │ │ │ │ ├── .gitignore │ │ │ │ ├── layout-page-header-side.js │ │ │ │ ├── markdown-components.js │ │ │ │ ├── page-header-banner-area.js │ │ │ │ ├── page-header-side.js │ │ │ │ └── top-menu-banner-area.js │ │ ├── code-examples │ │ │ ├── example.console │ │ │ ├── example.cs │ │ │ ├── example.curl │ │ │ ├── example.graphql │ │ │ ├── example.java │ │ │ ├── example.js │ │ │ ├── example.json │ │ │ ├── example.php │ │ │ ├── example.scala │ │ │ ├── example.sh │ │ │ ├── example.ts │ │ │ └── example.yml │ │ ├── content │ │ │ ├── api-docs │ │ │ │ ├── endpoints.mdx │ │ │ │ ├── examples.mdx │ │ │ │ ├── raml.mdx │ │ │ │ └── types.mdx │ │ │ ├── beta.mdx │ │ │ ├── configuration │ │ │ │ ├── algolia-search.mdx │ │ │ │ ├── api.mdx │ │ │ │ ├── components.mdx │ │ │ │ ├── deploy.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── overrides.mdx │ │ │ │ ├── packages.mdx │ │ │ │ ├── plugins.mdx │ │ │ │ ├── rss.mdx │ │ │ │ ├── theme.mdx │ │ │ │ └── troubleshooting.mdx │ │ │ ├── developing │ │ │ │ ├── code-of-conduct.mdx │ │ │ │ ├── contributing.mdx │ │ │ │ ├── extensions.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ └── tests.mdx │ │ │ ├── getting-started │ │ │ │ ├── setup.mdx │ │ │ │ └── troubleshooting.mdx │ │ │ ├── index.mdx │ │ │ ├── plan.mdx │ │ │ └── writing │ │ │ │ ├── ai-assistant.mdx │ │ │ │ ├── code.mdx │ │ │ │ ├── constants.mdx │ │ │ │ ├── files-folders.mdx │ │ │ │ ├── images.mdx │ │ │ │ ├── import-content.mdx │ │ │ │ ├── lord-icons.mdx │ │ │ │ ├── markdown.mdx │ │ │ │ ├── navigation.mdx │ │ │ │ ├── nested │ │ │ │ └── link-target.mdx │ │ │ │ ├── pages.mdx │ │ │ │ ├── paths.mdx │ │ │ │ ├── release-notes.mdx │ │ │ │ ├── sample.mdx │ │ │ │ ├── self-learning.mdx │ │ │ │ └── sso.mdx │ │ ├── data │ │ │ └── navigation.yaml │ │ ├── icons │ │ │ ├── .gitattributes │ │ │ ├── generated │ │ │ │ ├── CardBannerMc.js │ │ │ │ ├── CardBannerOss.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── svg │ │ │ │ ├── card-banner-mc.svg │ │ │ │ └── card-banner-oss.svg │ │ └── images │ │ │ ├── commercetools_ID_logo.png │ │ │ ├── dog.jpg │ │ │ ├── subchapters.png │ │ │ └── top-menu-example.png │ └── static │ │ ├── downloads │ │ ├── hello.json │ │ └── hello.txt │ │ └── html │ │ └── hello.html ├── index.html ├── self-learning-smoke-test │ ├── .eslintrc.yml │ ├── CHANGELOG.md │ ├── gatsby-config.mjs │ ├── package.json │ ├── scripts │ │ └── build.sh │ └── src │ │ ├── components │ │ ├── achieve-goals-section.js │ │ ├── achievements-section.js │ │ ├── certification-box.js │ │ ├── certifications-section.js │ │ ├── enrolled-learning-paths.js │ │ ├── full-width-container.js │ │ ├── learning-paths-section.js │ │ ├── refresher-section.js │ │ ├── resources-section.js │ │ ├── welcome-area-logged-in.js │ │ └── welcome-area-logged-out.js │ │ ├── content │ │ ├── course-1 │ │ │ ├── 2-quiz.mdx │ │ │ ├── overview.mdx │ │ │ └── quiz.mdx │ │ ├── course-2 │ │ │ ├── 2-quiz.mdx │ │ │ ├── overview.mdx │ │ │ └── quiz.mdx │ │ ├── course-with-code │ │ │ ├── overview.mdx │ │ │ └── quiz.mdx │ │ ├── files │ │ │ ├── logged-in-learning-path-complete.svg │ │ │ ├── logged-in-learning-path.svg │ │ │ └── logged-out-learning-path.svg │ │ ├── index.mdx │ │ └── releases.mdx │ │ ├── data │ │ └── navigation.yaml │ │ ├── icons │ │ ├── box-books.svg │ │ ├── box-certified.svg │ │ ├── box-graduation.svg │ │ ├── box-pc.svg │ │ ├── graduation.svg │ │ ├── growing-plant.svg │ │ ├── left-grass.svg │ │ ├── prize-icon.svg │ │ ├── right-grass.svg │ │ ├── signpost.svg │ │ └── sun.svg │ │ ├── layouts │ │ └── learning-home.js │ │ ├── pages │ │ └── learning-path-home.js │ │ └── releases │ │ └── test-self-learning-smoke-release-note.mdx └── site-template │ ├── .eslintrc.yml │ ├── CHANGELOG.md │ ├── gatsby-config.mjs │ ├── package.json │ ├── scripts │ └── build.sh │ └── src │ ├── @commercetools-docs │ └── gatsby-theme-docs │ │ └── overrides │ │ ├── .gitignore │ │ ├── addon-components.js │ │ └── markdown-components.js │ ├── content │ ├── first-page.mdx │ └── index.mdx │ └── data │ └── navigation.yaml └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- 1 | AUTH_TOKEN= # for github labels 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github-labelsrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.github-labelsrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/api-specs-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.github/workflows/api-specs-pr.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit $1 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.percy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.percy.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/dist/ 2 | **/public/ 3 | .percy.yml 4 | .cache 5 | .yarn 6 | **/styles/Google 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.vercelignore -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.vscode/spellright.dict -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-constraints.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.yarn/plugins/@yarnpkg/plugin-constraints.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-postinstall.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.yarn/plugins/@yarnpkg/plugin-postinstall.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.8.5.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.yarn/releases/yarn-3.8.5.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /ARCHIVED_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/ARCHIVED_CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/CODE_OF_CONDUCT.mdx -------------------------------------------------------------------------------- /CONTRIBUTING.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/CONTRIBUTING.mdx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/README.md -------------------------------------------------------------------------------- /algolia-crawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/algolia-crawler.js -------------------------------------------------------------------------------- /api-specs/api/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/api.raml -------------------------------------------------------------------------------- /api-specs/api/examples/ApprovalFlow/ApprovalFlowApproveAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "approve" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/Cart/CartCreateCart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Cart/CartCreateCart.json -------------------------------------------------------------------------------- /api-specs/api/examples/Cart/CartFreezeCartAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "freezeCart" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/Cart/CartSetKeyAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Cart/CartSetKeyAction.json -------------------------------------------------------------------------------- /api-specs/api/examples/Cart/CartUnfreezeCartAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "unfreezeCart" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/Common/AddressDraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Common/AddressDraft.json -------------------------------------------------------------------------------- /api-specs/api/examples/Common/LocalizedString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Common/LocalizedString.json -------------------------------------------------------------------------------- /api-specs/api/examples/Common/Money.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Common/Money.json -------------------------------------------------------------------------------- /api-specs/api/examples/Common/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Common/Reference.json -------------------------------------------------------------------------------- /api-specs/api/examples/Customer/CustomerCreatePasswordResetToken.json: -------------------------------------------------------------------------------- 1 | { 2 | "email": "johndoe@example.com" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/Customer/CustomerEmailVerify.json: -------------------------------------------------------------------------------- 1 | { 2 | "tokenValue": "hI_6fkuFIyd_wadz1JmpRGh1vMvgFrlsSJia3G6d" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/Customer/CustomerToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Customer/CustomerToken.json -------------------------------------------------------------------------------- /api-specs/api/examples/Error/ErrorResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Error/ErrorResponse.json -------------------------------------------------------------------------------- /api-specs/api/examples/GraphQL/GraphQLError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/GraphQL/GraphQLError.json -------------------------------------------------------------------------------- /api-specs/api/examples/Product/ProductPublishAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "publish" 3 | } -------------------------------------------------------------------------------- /api-specs/api/examples/Product/ProductRevertStagedChangesAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "revertStagedChanges" 3 | } -------------------------------------------------------------------------------- /api-specs/api/examples/Product/ProductUnpublishAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "unpublish" 3 | } -------------------------------------------------------------------------------- /api-specs/api/examples/Product/SearchKeywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Product/SearchKeywords.json -------------------------------------------------------------------------------- /api-specs/api/examples/ProductTailoring/ProductTailoringPublishAction.json: -------------------------------------------------------------------------------- 1 | { "action": "publish" } 2 | -------------------------------------------------------------------------------- /api-specs/api/examples/ProductTailoring/ProductTailoringUnpublishAction.json: -------------------------------------------------------------------------------- 1 | { "action": "unpublish" } 2 | -------------------------------------------------------------------------------- /api-specs/api/examples/StandalonePrice/StandalonePriceApplyStagedChangesAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "applyStagedChanges" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/StandalonePrice/StandalonePriceRemoveStagedChangesAction.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "removeStagedChanges" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/Type/FieldContainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Type/FieldContainer.json -------------------------------------------------------------------------------- /api-specs/api/examples/Type/TypeChangeFieldDefinitionLabelAction.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api-specs/api/examples/Zone/ZoneSetKeyAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/Zone/ZoneSetKeyAction.json -------------------------------------------------------------------------------- /api-specs/api/examples/api-client.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/api-client.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/api-clients.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/api-clients.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/approval-flow.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/approval-flow.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/approval-flows.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/approval-flows.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/approval-rule.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/approval-rule.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/approval-rules.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/approval-rules.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/associate-role.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/associate-role.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/b2b-cart.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/b2b-cart.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/b2b-carts.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/b2b-carts.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/business-unit.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/business-unit.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/business-units.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/business-units.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/cart-create.example.json: -------------------------------------------------------------------------------- 1 | { 2 | "currency": "EUR" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/cart-discount.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/cart-discount.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/cart-discounts.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/cart-discounts.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/cart-replicate.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/cart-replicate.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/cart-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/cart-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/cart.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/cart.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/carts.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/carts.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/categories.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/categories.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/category.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/category.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/channel-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/channel-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/channel-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/channel-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/channel.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/channel.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/channels.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/channels.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/custom-object.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/custom-object.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/custom-objects.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/custom-objects.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/customer-group-create.example.json: -------------------------------------------------------------------------------- 1 | { 2 | "groupName": "Webshop user" 3 | } 4 | -------------------------------------------------------------------------------- /api-specs/api/examples/customer-group.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/customer-group.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/customer.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/customer.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/customers.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/customers.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/discount-code.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/discount-code.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/discount-codes.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/discount-codes.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/error.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/error.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/extension.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/extension.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/extensions.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/extensions.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/graphql-query.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/graphql-query.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/graphql.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/graphql.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/inventories.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/inventories.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/inventory.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/inventory.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/message.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/message.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/messages.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/messages.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/my-payment.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/my-payment.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/my-payments.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/my-payments.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/order-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/order-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/order-edits.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/order-edits.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/order-import.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/order-import.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/order-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/order-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/order.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/order.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/orders.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/orders.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/payment-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/payment-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/payment-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/payment-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/payment.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/payment.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/payments.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/payments.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/product-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/product-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/product-type.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/product-type.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/product-types.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/product-types.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/product-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/product-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/product.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/product.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/products.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/products.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/project.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/project.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/quote-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/quote-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/quote-request.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/quote-request.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/quote-requests.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/quote-requests.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/quote-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/quote-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/quote.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/quote.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/quotes.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/quotes.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/review-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/review-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/review-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/review-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/review.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/review.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/reviews.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/reviews.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/shopping-list.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/shopping-list.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/shopping-lists.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/shopping-lists.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/staged-quote.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/staged-quote.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/staged-quotes.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/staged-quotes.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/state-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/state-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/state-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/state-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/state.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/state.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/states.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/states.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/store-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/store-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/store-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/store-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/store.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/store.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/stores.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/stores.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/subscription.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/subscription.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/subscriptions.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/subscriptions.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/tax-categories.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/tax-categories.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/tax-category.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/tax-category.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/type-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/type-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/type-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/type-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/type.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/type.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/types.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/types.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/zone-create.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/zone-create.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/zone-update.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/zone-update.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/zone.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/zone.example.json -------------------------------------------------------------------------------- /api-specs/api/examples/zones.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/examples/zones.example.json -------------------------------------------------------------------------------- /api-specs/api/oauth.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/oauth.raml -------------------------------------------------------------------------------- /api-specs/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/package.json -------------------------------------------------------------------------------- /api-specs/api/postman.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/postman.raml -------------------------------------------------------------------------------- /api-specs/api/resources/api-clients.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/api-clients.raml -------------------------------------------------------------------------------- /api-specs/api/resources/as-associate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/as-associate.raml -------------------------------------------------------------------------------- /api-specs/api/resources/associate-roles.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/associate-roles.raml -------------------------------------------------------------------------------- /api-specs/api/resources/attribute-groups.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/attribute-groups.raml -------------------------------------------------------------------------------- /api-specs/api/resources/business-units.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/business-units.raml -------------------------------------------------------------------------------- /api-specs/api/resources/cart-discounts.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/cart-discounts.raml -------------------------------------------------------------------------------- /api-specs/api/resources/carts.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/carts.raml -------------------------------------------------------------------------------- /api-specs/api/resources/categories.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/categories.raml -------------------------------------------------------------------------------- /api-specs/api/resources/channels.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/channels.raml -------------------------------------------------------------------------------- /api-specs/api/resources/custom-objects.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/custom-objects.raml -------------------------------------------------------------------------------- /api-specs/api/resources/customer-groups.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/customer-groups.raml -------------------------------------------------------------------------------- /api-specs/api/resources/customers.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/customers.raml -------------------------------------------------------------------------------- /api-specs/api/resources/discount-codes.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/discount-codes.raml -------------------------------------------------------------------------------- /api-specs/api/resources/extensions.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/extensions.raml -------------------------------------------------------------------------------- /api-specs/api/resources/graphql.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/graphql.raml -------------------------------------------------------------------------------- /api-specs/api/resources/in-business-unit.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/in-business-unit.raml -------------------------------------------------------------------------------- /api-specs/api/resources/in-store.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/in-store.raml -------------------------------------------------------------------------------- /api-specs/api/resources/inventory.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/inventory.raml -------------------------------------------------------------------------------- /api-specs/api/resources/login.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/login.raml -------------------------------------------------------------------------------- /api-specs/api/resources/me.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/me.raml -------------------------------------------------------------------------------- /api-specs/api/resources/messages.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/messages.raml -------------------------------------------------------------------------------- /api-specs/api/resources/orders.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/orders.raml -------------------------------------------------------------------------------- /api-specs/api/resources/payments.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/payments.raml -------------------------------------------------------------------------------- /api-specs/api/resources/product-discounts.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/product-discounts.raml -------------------------------------------------------------------------------- /api-specs/api/resources/product-projections.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/product-projections.raml -------------------------------------------------------------------------------- /api-specs/api/resources/product-selections.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/product-selections.raml -------------------------------------------------------------------------------- /api-specs/api/resources/product-tailoring.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/product-tailoring.raml -------------------------------------------------------------------------------- /api-specs/api/resources/product-types.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/product-types.raml -------------------------------------------------------------------------------- /api-specs/api/resources/products.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/products.raml -------------------------------------------------------------------------------- /api-specs/api/resources/quote-requests.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/quote-requests.raml -------------------------------------------------------------------------------- /api-specs/api/resources/quotes.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/quotes.raml -------------------------------------------------------------------------------- /api-specs/api/resources/reviews.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/reviews.raml -------------------------------------------------------------------------------- /api-specs/api/resources/shipping-methods.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/shipping-methods.raml -------------------------------------------------------------------------------- /api-specs/api/resources/shopping-lists.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/shopping-lists.raml -------------------------------------------------------------------------------- /api-specs/api/resources/staged-quotes.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/staged-quotes.raml -------------------------------------------------------------------------------- /api-specs/api/resources/standalone-prices.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/standalone-prices.raml -------------------------------------------------------------------------------- /api-specs/api/resources/states.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/states.raml -------------------------------------------------------------------------------- /api-specs/api/resources/stores.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/stores.raml -------------------------------------------------------------------------------- /api-specs/api/resources/subscriptions.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/subscriptions.raml -------------------------------------------------------------------------------- /api-specs/api/resources/tax-categories.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/tax-categories.raml -------------------------------------------------------------------------------- /api-specs/api/resources/types.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/types.raml -------------------------------------------------------------------------------- /api-specs/api/resources/zones.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/resources/zones.raml -------------------------------------------------------------------------------- /api-specs/api/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/ruleset.xml -------------------------------------------------------------------------------- /api-specs/api/securitySchemes/oauth2.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/securitySchemes/oauth2.raml -------------------------------------------------------------------------------- /api-specs/api/securitySchemes/oauth2_password.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/securitySchemes/oauth2_password.raml -------------------------------------------------------------------------------- /api-specs/api/securitySchemes/oauth2_refresh.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/securitySchemes/oauth2_refresh.raml -------------------------------------------------------------------------------- /api-specs/api/traits/conflicting.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/conflicting.raml -------------------------------------------------------------------------------- /api-specs/api/traits/data-erasure.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/data-erasure.raml -------------------------------------------------------------------------------- /api-specs/api/traits/deprecatable200.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/deprecatable200.raml -------------------------------------------------------------------------------- /api-specs/api/traits/deprecatable201.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/deprecatable201.raml -------------------------------------------------------------------------------- /api-specs/api/traits/errorable.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/errorable.raml -------------------------------------------------------------------------------- /api-specs/api/traits/expandable.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/expandable.raml -------------------------------------------------------------------------------- /api-specs/api/traits/locale-projecting.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/locale-projecting.raml -------------------------------------------------------------------------------- /api-specs/api/traits/paging.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/paging.raml -------------------------------------------------------------------------------- /api-specs/api/traits/price-selecting.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/price-selecting.raml -------------------------------------------------------------------------------- /api-specs/api/traits/projection-selecting.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/projection-selecting.raml -------------------------------------------------------------------------------- /api-specs/api/traits/query.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/query.raml -------------------------------------------------------------------------------- /api-specs/api/traits/sortable.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/sortable.raml -------------------------------------------------------------------------------- /api-specs/api/traits/store-projecting.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/store-projecting.raml -------------------------------------------------------------------------------- /api-specs/api/traits/versioned.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/traits/versioned.raml -------------------------------------------------------------------------------- /api-specs/api/types/PagedQueryResponse.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/PagedQueryResponse.raml -------------------------------------------------------------------------------- /api-specs/api/types/Update.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/Update.raml -------------------------------------------------------------------------------- /api-specs/api/types/UpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/UpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/annotations.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/annotations.raml -------------------------------------------------------------------------------- /api-specs/api/types/api-client/ApiClient.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/api-client/ApiClient.raml -------------------------------------------------------------------------------- /api-specs/api/types/api-client/ApiClientDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/api-client/ApiClientDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/associate-role/Permission.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/associate-role/Permission.raml -------------------------------------------------------------------------------- /api-specs/api/types/business-unit/Associate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/business-unit/Associate.raml -------------------------------------------------------------------------------- /api-specs/api/types/business-unit/Company.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/business-unit/Company.raml -------------------------------------------------------------------------------- /api-specs/api/types/business-unit/Division.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/business-unit/Division.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/Cart.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/Cart.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CartDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CartDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CartOrigin.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CartOrigin.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CartReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CartReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CartState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CartState.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CartUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CartUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CartUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CartUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CustomLineItem.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CustomLineItem.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CustomLineItemDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CustomLineItemDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/CustomShippingDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/CustomShippingDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/DirectDiscount.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/DirectDiscount.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/DirectDiscountDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/DirectDiscountDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/DiscountCodeInfo.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/DiscountCodeInfo.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/DiscountCodeState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/DiscountCodeState.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/DiscountOnTotalPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/DiscountOnTotalPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ExternalTaxRateDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ExternalTaxRateDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/InventoryMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/InventoryMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ItemShippingDetails.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ItemShippingDetails.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ItemShippingTarget.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ItemShippingTarget.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/LineItem.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/LineItem.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/LineItemDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/LineItemDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/LineItemMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/LineItemMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/LineItemPriceMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/LineItemPriceMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/MethodTaxRate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/MethodTaxRate.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/MethodTaxedPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/MethodTaxedPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ReplicaCartDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ReplicaCartDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/RoundingMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/RoundingMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/Shipping.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/Shipping.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ShippingDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ShippingDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ShippingInfo.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ShippingInfo.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ShippingMethodState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ShippingMethodState.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ShippingMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ShippingMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/ShippingRateInput.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/ShippingRateInput.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxCalculationMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxCalculationMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxPortion.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxPortion.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxPortionDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxPortionDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxedItemPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxedItemPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxedPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxedPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/cart/TaxedPriceDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/cart/TaxedPriceDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/category/Category.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/category/Category.raml -------------------------------------------------------------------------------- /api-specs/api/types/category/CategoryDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/category/CategoryDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/category/CategoryUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/category/CategoryUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/channel/Channel.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/channel/Channel.raml -------------------------------------------------------------------------------- /api-specs/api/types/channel/ChannelDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/channel/ChannelDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/channel/ChannelReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/channel/ChannelReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/channel/ChannelRoleEnum.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/channel/ChannelRoleEnum.raml -------------------------------------------------------------------------------- /api-specs/api/types/channel/ChannelUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/channel/ChannelUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Address.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Address.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/AddressDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/AddressDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Asset.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Asset.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/AssetDimensions.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/AssetDimensions.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/AssetDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/AssetDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/AssetSource.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/AssetSource.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Attribution.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Attribution.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/AttributionSource.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/AttributionSource.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/BaseAddress.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/BaseAddress.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/BaseResource.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/BaseResource.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/CentPrecisionMoney.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/CentPrecisionMoney.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/ClientLogging.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/ClientLogging.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/CountryCode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/CountryCode.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/CreatedBy.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/CreatedBy.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/CurrencyCode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/CurrencyCode.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/DiscountedPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/DiscountedPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Expansion.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Expansion.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/GeoJson.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/GeoJson.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/GeoJsonPoint.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/GeoJsonPoint.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/HighPrecisionMoney.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/HighPrecisionMoney.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Image.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Image.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/ImageDimensions.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/ImageDimensions.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/KeyReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/KeyReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/LastModifiedBy.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/LastModifiedBy.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Locale.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Locale.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/LocalizedString.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/LocalizedString.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Money.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Money.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/MoneyType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/MoneyType.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Price.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Price.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/PriceDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/PriceDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/PriceTier.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/PriceTier.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/PriceTierDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/PriceTierDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/QueryPredicate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/QueryPredicate.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/QueryPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/QueryPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Reference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Reference.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/ReferenceTypeId.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/ReferenceTypeId.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/ResourceIdentifier.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/ResourceIdentifier.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/ScopedPrice.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/ScopedPrice.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/Sort.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/Sort.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/TypedMoney.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/TypedMoney.raml -------------------------------------------------------------------------------- /api-specs/api/types/common/TypedMoneyDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/common/TypedMoneyDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/customer/Customer.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/customer/Customer.raml -------------------------------------------------------------------------------- /api-specs/api/types/customer/CustomerDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/customer/CustomerDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/customer/CustomerSignin.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/customer/CustomerSignin.raml -------------------------------------------------------------------------------- /api-specs/api/types/customer/CustomerToken.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/customer/CustomerToken.raml -------------------------------------------------------------------------------- /api-specs/api/types/customer/CustomerUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/customer/CustomerUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/customer/MyCustomerSignin.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/customer/MyCustomerSignin.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/AuthErrorResponse.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/AuthErrorResponse.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/BadGatewayError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/BadGatewayError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/DuplicateFieldError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/DuplicateFieldError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/ErrorByExtension.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/ErrorByExtension.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/ErrorObject.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/ErrorObject.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/ErrorResponse.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/ErrorResponse.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/ExtensionError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/ExtensionError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/FeatureRemovedError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/FeatureRemovedError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/GeneralError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/GeneralError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/InvalidFieldError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/InvalidFieldError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/InvalidInputError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/InvalidInputError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/InvalidTokenError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/InvalidTokenError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/LockedFieldError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/LockedFieldError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/OutOfStockError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/OutOfStockError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/OverCapacityError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/OverCapacityError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/PriceChangedError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/PriceChangedError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/SyntaxErrorError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/SyntaxErrorError.raml -------------------------------------------------------------------------------- /api-specs/api/types/error/VariantValues.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/error/VariantValues.raml -------------------------------------------------------------------------------- /api-specs/api/types/extension/Extension.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/extension/Extension.raml -------------------------------------------------------------------------------- /api-specs/api/types/graphql/GraphQLError.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/graphql/GraphQLError.raml -------------------------------------------------------------------------------- /api-specs/api/types/graphql/GraphQLRequest.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/graphql/GraphQLRequest.raml -------------------------------------------------------------------------------- /api-specs/api/types/graphql/GraphQLResponse.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/graphql/GraphQLResponse.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyBusinessUnitDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyBusinessUnitDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyBusinessUnitUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyBusinessUnitUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyCartDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyCartDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyCartUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyCartUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyCartUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyCartUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyCompanyDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyCompanyDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyCustomerDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyCustomerDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyCustomerUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyCustomerUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyDivisionDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyDivisionDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyLineItemDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyLineItemDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyOrderFromCartDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyOrderFromCartDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyPayment.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyPayment.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyPaymentDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyPaymentDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyPaymentUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyPaymentUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyQuoteRequestDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyQuoteRequestDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyQuoteRequestUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyQuoteRequestUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyQuoteState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyQuoteState.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyQuoteUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyQuoteUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyQuoteUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyQuoteUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyShoppingListDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyShoppingListDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyShoppingListUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyShoppingListUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/MyTransactionDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/MyTransactionDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/me/ReplicaMyCartDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/me/ReplicaMyCartDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/message/ContainerAndKey.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/message/ContainerAndKey.raml -------------------------------------------------------------------------------- /api-specs/api/types/message/Message.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/message/Message.raml -------------------------------------------------------------------------------- /api-specs/api/types/message/OrderMessage.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/message/OrderMessage.raml -------------------------------------------------------------------------------- /api-specs/api/types/order-edit/OrderEdit.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order-edit/OrderEdit.raml -------------------------------------------------------------------------------- /api-specs/api/types/order-edit/OrderExcerpt.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order-edit/OrderExcerpt.raml -------------------------------------------------------------------------------- /api-specs/api/types/order-edit/StagedOrder.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order-edit/StagedOrder.raml -------------------------------------------------------------------------------- /api-specs/api/types/order-search/Hit.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order-search/Hit.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/Delivery.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/Delivery.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/DeliveryDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/DeliveryDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/DeliveryItem.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/DeliveryItem.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ItemState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ItemState.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/Order.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/Order.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/OrderImportDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/OrderImportDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/OrderReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/OrderReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/OrderSearchQuery.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/OrderSearchQuery.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/OrderState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/OrderState.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/OrderUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/OrderUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/OrderUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/OrderUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/Parcel.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/Parcel.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ParcelDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ParcelDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/PaymentInfo.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/PaymentInfo.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/PaymentState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/PaymentState.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ReturnInfo.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ReturnInfo.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ReturnInfoDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ReturnInfoDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ReturnItem.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ReturnItem.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ReturnItemDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ReturnItemDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/ShipmentState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/ShipmentState.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/SyncInfo.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/SyncInfo.raml -------------------------------------------------------------------------------- /api-specs/api/types/order/TrackingData.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/order/TrackingData.raml -------------------------------------------------------------------------------- /api-specs/api/types/payment/Payment.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/payment/Payment.raml -------------------------------------------------------------------------------- /api-specs/api/types/payment/PaymentDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/payment/PaymentDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/payment/PaymentStatus.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/payment/PaymentStatus.raml -------------------------------------------------------------------------------- /api-specs/api/types/payment/PaymentUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/payment/PaymentUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/payment/Transaction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/payment/Transaction.raml -------------------------------------------------------------------------------- /api-specs/api/types/payment/TransactionType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/payment/TransactionType.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/Attribute.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/Attribute.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/AttributeValue.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/AttributeValue.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/CustomTokenizer.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/CustomTokenizer.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/FacetRange.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/FacetRange.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/FacetResult.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/FacetResult.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/FacetResults.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/FacetResults.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/FacetTerm.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/FacetTerm.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/FacetTypes.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/FacetTypes.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/Product.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/Product.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/ProductData.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/ProductData.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/ProductDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/ProductDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/ProductUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/ProductUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/ProductVariant.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/ProductVariant.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/SearchKeyword.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/SearchKeyword.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/SearchKeywords.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/SearchKeywords.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/Suggestion.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/Suggestion.raml -------------------------------------------------------------------------------- /api-specs/api/types/product/TermFacetResult.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/product/TermFacetResult.raml -------------------------------------------------------------------------------- /api-specs/api/types/project/CartScoreType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/project/CartScoreType.raml -------------------------------------------------------------------------------- /api-specs/api/types/project/CartValueType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/project/CartValueType.raml -------------------------------------------------------------------------------- /api-specs/api/types/project/ExternalOAuth.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/project/ExternalOAuth.raml -------------------------------------------------------------------------------- /api-specs/api/types/project/Project.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/project/Project.raml -------------------------------------------------------------------------------- /api-specs/api/types/project/ProjectUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/project/ProjectUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/quote/Quote.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/quote/Quote.raml -------------------------------------------------------------------------------- /api-specs/api/types/quote/QuoteDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/quote/QuoteDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/quote/QuoteReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/quote/QuoteReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/quote/QuoteState.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/quote/QuoteState.raml -------------------------------------------------------------------------------- /api-specs/api/types/quote/QuoteUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/quote/QuoteUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/quote/QuoteUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/quote/QuoteUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/review/Review.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/review/Review.raml -------------------------------------------------------------------------------- /api-specs/api/types/review/ReviewDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/review/ReviewDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/review/ReviewReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/review/ReviewReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/review/ReviewUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/review/ReviewUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchAnyValue.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchAnyValue.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchFieldType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchFieldType.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchMatchType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchMatchType.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchQuery.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchQuery.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchSortMode.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchSortMode.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchSortOrder.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchSortOrder.raml -------------------------------------------------------------------------------- /api-specs/api/types/search/SearchSorting.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/search/SearchSorting.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/State.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/State.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/StateDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/StateDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/StateReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/StateReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/StateRoleEnum.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/StateRoleEnum.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/StateTypeEnum.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/StateTypeEnum.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/StateUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/StateUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/state/StateUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/state/StateUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/Store.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/Store.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/StoreCountry.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/StoreCountry.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/StoreDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/StoreDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/StoreKeyReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/StoreKeyReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/StoreReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/StoreReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/StoreUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/StoreUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/store/StoreUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/store/StoreUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/tax-category/SubRate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/tax-category/SubRate.raml -------------------------------------------------------------------------------- /api-specs/api/types/tax-category/TaxRate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/tax-category/TaxRate.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/CustomFieldSetType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/CustomFieldSetType.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/CustomFieldValue.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/CustomFieldValue.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/CustomFields.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/CustomFields.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/CustomFieldsDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/CustomFieldsDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/FieldContainer.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/FieldContainer.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/FieldDefinition.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/FieldDefinition.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/FieldType.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/FieldType.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/ResourceTypeId.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/ResourceTypeId.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/Type.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/Type.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/TypeDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/TypeDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/TypeReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/TypeReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/TypeTextInputHint.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/TypeTextInputHint.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/TypeUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/TypeUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/type/TypeUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/type/TypeUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/types/types.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/types.raml -------------------------------------------------------------------------------- /api-specs/api/types/zone/Location.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/zone/Location.raml -------------------------------------------------------------------------------- /api-specs/api/types/zone/Zone.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/zone/Zone.raml -------------------------------------------------------------------------------- /api-specs/api/types/zone/ZoneDraft.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/zone/ZoneDraft.raml -------------------------------------------------------------------------------- /api-specs/api/types/zone/ZoneReference.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/zone/ZoneReference.raml -------------------------------------------------------------------------------- /api-specs/api/types/zone/ZoneUpdate.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/zone/ZoneUpdate.raml -------------------------------------------------------------------------------- /api-specs/api/types/zone/ZoneUpdateAction.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/types/zone/ZoneUpdateAction.raml -------------------------------------------------------------------------------- /api-specs/api/update-actions.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/api/update-actions.raml -------------------------------------------------------------------------------- /api-specs/test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/CHANGELOG.md -------------------------------------------------------------------------------- /api-specs/test/annotation-types/annotations.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/annotation-types/annotations.raml -------------------------------------------------------------------------------- /api-specs/test/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/api.raml -------------------------------------------------------------------------------- /api-specs/test/examples/action-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/examples/action-success.json -------------------------------------------------------------------------------- /api-specs/test/examples/array-test-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/examples/array-test-type.json -------------------------------------------------------------------------------- /api-specs/test/examples/date-test-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/examples/date-test-type.json -------------------------------------------------------------------------------- /api-specs/test/examples/do-something-on-example-resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "doSomeThing" 3 | } -------------------------------------------------------------------------------- /api-specs/test/examples/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/examples/example.json -------------------------------------------------------------------------------- /api-specs/test/examples/json-serializable-primitive-object.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api-specs/test/examples/json-serializable-primitive-raw.json: -------------------------------------------------------------------------------- 1 | "raw string" 2 | -------------------------------------------------------------------------------- /api-specs/test/examples/object-test-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/examples/object-test-type.json -------------------------------------------------------------------------------- /api-specs/test/examples/product-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/examples/product-example.json -------------------------------------------------------------------------------- /api-specs/test/examples/string-test-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "stringExample": "0123456" 3 | } -------------------------------------------------------------------------------- /api-specs/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/package.json -------------------------------------------------------------------------------- /api-specs/test/security-schemes/oauth2.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/security-schemes/oauth2.raml -------------------------------------------------------------------------------- /api-specs/test/types/annotations-test-type.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/annotations-test-type.raml -------------------------------------------------------------------------------- /api-specs/test/types/any-properties-type.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/any-properties-type.raml -------------------------------------------------------------------------------- /api-specs/test/types/any-test-type.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/any-test-type.raml -------------------------------------------------------------------------------- /api-specs/test/types/arrays.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/arrays.raml -------------------------------------------------------------------------------- /api-specs/test/types/constants.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/constants.raml -------------------------------------------------------------------------------- /api-specs/test/types/date-test-type.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/date-test-type.raml -------------------------------------------------------------------------------- /api-specs/test/types/enums.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/enums.raml -------------------------------------------------------------------------------- /api-specs/test/types/examples.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/examples.raml -------------------------------------------------------------------------------- /api-specs/test/types/link-test-types.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/link-test-types.raml -------------------------------------------------------------------------------- /api-specs/test/types/objects.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/objects.raml -------------------------------------------------------------------------------- /api-specs/test/types/references.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/references.raml -------------------------------------------------------------------------------- /api-specs/test/types/scalars.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/scalars.raml -------------------------------------------------------------------------------- /api-specs/test/types/soft-links.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/soft-links.raml -------------------------------------------------------------------------------- /api-specs/test/types/type-overrides.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/type-overrides.raml -------------------------------------------------------------------------------- /api-specs/test/types/unions.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/api-specs/test/types/unions.raml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /constraints.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/constraints.pro -------------------------------------------------------------------------------- /cypress.config.cucumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress.config.cucumber.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/.eslintrc.yaml -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/ai-assistant.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/ai-assistant.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/links.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/links.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/pagination.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/pagination.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/sections.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/sections.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/site-overrides.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/site-overrides.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/static-pages.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/static-pages.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/top-menu.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/top-menu.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/docs-smoke-test/viewports.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/docs-smoke-test/viewports.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/self-learning-smoke-test/01-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/self-learning-smoke-test/01-login.ts -------------------------------------------------------------------------------- /cypress/e2e/self-learning-smoke-test/04-quiz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/e2e/self-learning-smoke-test/04-quiz.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/global.d.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/support/env.ts: -------------------------------------------------------------------------------- 1 | export const isCI = Cypress.env('CI') === true; 2 | -------------------------------------------------------------------------------- /cypress/support/step_definitions/common.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/support/step_definitions/common.steps.ts -------------------------------------------------------------------------------- /cypress/support/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/support/urls.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /jest-runner-eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/jest-runner-eslint.config.js -------------------------------------------------------------------------------- /jest.eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/jest.eslint.config.js -------------------------------------------------------------------------------- /jest.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/jest.test.config.js -------------------------------------------------------------------------------- /linkcheck-local-skip-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/linkcheck-local-skip-list -------------------------------------------------------------------------------- /linkinator.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/linkinator.config.json -------------------------------------------------------------------------------- /linkinator.remote.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/linkinator.remote.config.json -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/package.json -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/.eslintrc.yml -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/.npmignore: -------------------------------------------------------------------------------- 1 | public 2 | node_modules -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/README.md -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/gatsby-config.mjs -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/gatsby-node.mjs -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/index.js -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/package.json -------------------------------------------------------------------------------- /packages/gatsby-theme-api-docs/shortcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-api-docs/shortcodes.js -------------------------------------------------------------------------------- /packages/gatsby-theme-code-examples/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-code-examples/CHANGELOG.md -------------------------------------------------------------------------------- /packages/gatsby-theme-code-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-code-examples/README.md -------------------------------------------------------------------------------- /packages/gatsby-theme-code-examples/index.js: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /packages/gatsby-theme-code-examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-code-examples/package.json -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-constants/CHANGELOG.md -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-constants/README.md -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-constants/gatsby-node.mjs -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/index.js: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-constants/package.json -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/shortcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-constants/shortcodes.js -------------------------------------------------------------------------------- /packages/gatsby-theme-constants/src/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-constants/src/constant.js -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/.npmignore: -------------------------------------------------------------------------------- 1 | public 2 | node_modules -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/README.md -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/configure-theme.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/configure-theme.mjs -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/gatsby-browser.js -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/gatsby-config.mjs -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/gatsby-node.mjs -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/gatsby-ssr.js -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/globals.css -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/index.js -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/package.json -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/src/components/seo.js -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/src/content/404.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/src/content/404.mdx -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/src/data/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/src/data/footer.yaml -------------------------------------------------------------------------------- /packages/gatsby-theme-docs/src/utils/get-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-theme-docs/src/utils/get-env.js -------------------------------------------------------------------------------- /packages/gatsby-transformer-raml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-transformer-raml/CHANGELOG.md -------------------------------------------------------------------------------- /packages/gatsby-transformer-raml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-transformer-raml/README.md -------------------------------------------------------------------------------- /packages/gatsby-transformer-raml/gatsby-node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-transformer-raml/gatsby-node.mjs -------------------------------------------------------------------------------- /packages/gatsby-transformer-raml/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-transformer-raml/index.js -------------------------------------------------------------------------------- /packages/gatsby-transformer-raml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/gatsby-transformer-raml/package.json -------------------------------------------------------------------------------- /packages/ui-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ui-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/README.md -------------------------------------------------------------------------------- /packages/ui-kit/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/global.d.ts -------------------------------------------------------------------------------- /packages/ui-kit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/index.ts -------------------------------------------------------------------------------- /packages/ui-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/package.json -------------------------------------------------------------------------------- /packages/ui-kit/src/components/card-elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/card-elements.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/code-block.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/dialogs/confirmation-dialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './confirmation-dialog'; 2 | -------------------------------------------------------------------------------- /packages/ui-kit/src/components/dialogs/form-dialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './form-dialog'; 2 | -------------------------------------------------------------------------------- /packages/ui-kit/src/components/dialogs/info-dialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './info-dialog'; 2 | -------------------------------------------------------------------------------- /packages/ui-kit/src/components/globals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/globals.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/link.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/components/logo-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/logo-button.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/lord-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/lord-icon.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/markdown.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/media-query.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/components/mermaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/mermaid.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/portals-container/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './portals-container'; 2 | -------------------------------------------------------------------------------- /packages/ui-kit/src/components/reset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/reset.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/rss/rss-feeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/rss/rss-feeds.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/components/subtitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/subtitle.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/components/text-small.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/components/text-small.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/design-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/design-system.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/hooks/use-lazy-load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/hooks/use-lazy-load.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/hooks/use-modal-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/hooks/use-modal-state.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/hooks/use-selected-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/hooks/use-selected-path.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/.gitattributes -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/B2BTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/B2BTag.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/CtLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/CtLogo.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/HttpApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/HttpApi.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/Logo.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/Ribbon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/Ribbon.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/Rss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/Rss.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/Search.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/Slash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/Slash.tsx -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/generated/index.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generated'; 2 | -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/lord-icon/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/lord-icon/book.json -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/lord-icon/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/lord-icon/cli.json -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/lord-icon/mm-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/lord-icon/mm-api.json -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/lord-icon/mm-flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/lord-icon/mm-flag.json -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/lord-icon/mm-free.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/lord-icon/mm-free.json -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/HTTP-API-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/HTTP-API-small.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/HTTP-API.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/HTTP-API.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/b2b-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/b2b-tag.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/ct-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/ct-logo.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/logo.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/lord-icon-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/lord-icon-book.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/lord-icon-cli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/lord-icon-cli.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/open-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/open-source.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/release-notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/release-notes.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/ribbon.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/rss.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/search.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/slash.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/icons/svg/tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/icons/svg/tutorials.svg -------------------------------------------------------------------------------- /packages/ui-kit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/index.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/copy-to-clipboard.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/create-styled-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/create-styled-icon.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/css-variables.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/css-variables.spec.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/css-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/css-variables.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/dates.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/lord-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/lord-icon.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/parse-numeric-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/parse-numeric-range.ts -------------------------------------------------------------------------------- /packages/ui-kit/src/utils/safe-html-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/ui-kit/src/utils/safe-html-element.ts -------------------------------------------------------------------------------- /packages/writing-style/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.tar.gz 3 | -------------------------------------------------------------------------------- /packages/writing-style/.npmignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.tar.gz 3 | vale-* 4 | -------------------------------------------------------------------------------- /packages/writing-style/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/.vale.ini -------------------------------------------------------------------------------- /packages/writing-style/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/CHANGELOG.md -------------------------------------------------------------------------------- /packages/writing-style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/README.md -------------------------------------------------------------------------------- /packages/writing-style/bin/commercetools-vale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/bin/commercetools-vale.js -------------------------------------------------------------------------------- /packages/writing-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/package.json -------------------------------------------------------------------------------- /packages/writing-style/scripts/download-vale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/scripts/download-vale.js -------------------------------------------------------------------------------- /packages/writing-style/src/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/src/run.js -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/AMPM.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Colons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Colons.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/EmDash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/EmDash.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/EnDash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/EnDash.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Gender.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Latin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Latin.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Ordinal.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Parens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Parens.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Passive.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Periods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Periods.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Quotes.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Ranges.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Slang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Slang.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Spacing.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Units.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/We.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/Will.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/Will.yml -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/Google/meta.json -------------------------------------------------------------------------------- /packages/writing-style/styles/Google/vocab.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/writing-style/styles/vocab.txt: -------------------------------------------------------------------------------- 1 | commercetools 2 | -------------------------------------------------------------------------------- /packages/writing-style/styles/write-good/So.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/packages/writing-style/styles/write-good/So.yml -------------------------------------------------------------------------------- /packages/writing-style/vale-bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /recommended.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/recommended.code-workspace -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/create-new-microsite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/scripts/create-new-microsite.js -------------------------------------------------------------------------------- /scripts/create-new-microsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/scripts/create-new-microsite.sh -------------------------------------------------------------------------------- /scripts/gatsby-cache.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/scripts/gatsby-cache.mjs -------------------------------------------------------------------------------- /scripts/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/scripts/postinstall.sh -------------------------------------------------------------------------------- /setup-test-framework.js: -------------------------------------------------------------------------------- 1 | require('@testing-library/jest-dom/extend-expect'); 2 | -------------------------------------------------------------------------------- /svgr.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/svgr.config.js -------------------------------------------------------------------------------- /transform-file.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /type-definition/png.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/type-definition/png.d.ts -------------------------------------------------------------------------------- /type-definition/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/type-definition/svg.d.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/vercel.json -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/api-docs-smoke-test/.eslintrc.yml -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/api-docs-smoke-test/CHANGELOG.md -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/api-docs-smoke-test/gatsby-config.mjs -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/api-docs-smoke-test/package.json -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/api-docs-smoke-test/scripts/build.sh -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/shortcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/api-docs-smoke-test/shortcodes.js -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore: -------------------------------------------------------------------------------- 1 | addon-components.js -------------------------------------------------------------------------------- /websites/api-docs-smoke-test/src/api-specs/.gitignore: -------------------------------------------------------------------------------- 1 | */ 2 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/.eslintrc.yml -------------------------------------------------------------------------------- /websites/docs-smoke-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/CHANGELOG.md -------------------------------------------------------------------------------- /websites/docs-smoke-test/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/gatsby-config.mjs -------------------------------------------------------------------------------- /websites/docs-smoke-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/package.json -------------------------------------------------------------------------------- /websites/docs-smoke-test/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/scripts/build.sh -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore: -------------------------------------------------------------------------------- 1 | addon-components.js -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/code-examples/example.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo Hello World -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/beta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/src/content/beta.mdx -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-eight.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-eleven.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-five.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-four.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-fourteen.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-nine.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-one.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-seven.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-six.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-ten.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-thirteen.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-three.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-twelve.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages-2/empty-page-two.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-eight.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-eleven.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-five.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-four.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-fourteen.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-nine.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-one.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-seven.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-six.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-ten.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-thirteen.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-three.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-twelve.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/empty-pages/empty-page-two.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/src/content/index.mdx -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/plan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/src/content/plan.mdx -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/views/empty.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Empty page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/content/views/nested/link-target.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Link target page 3 | --- 4 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/icons/index.js: -------------------------------------------------------------------------------- 1 | export * from './generated'; 2 | -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/images/1200x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/src/images/1200x300.jpg -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/images/200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/src/images/200.jpg -------------------------------------------------------------------------------- /websites/docs-smoke-test/src/images/300x900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/src/images/300x900.jpg -------------------------------------------------------------------------------- /websites/docs-smoke-test/static/downloads/hello.json: -------------------------------------------------------------------------------- 1 | {"message": "Hello World"} -------------------------------------------------------------------------------- /websites/docs-smoke-test/static/downloads/hello.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /websites/docs-smoke-test/static/html/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/docs-smoke-test/static/html/hello.html -------------------------------------------------------------------------------- /websites/documentation/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/.eslintrc.yml -------------------------------------------------------------------------------- /websites/documentation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/CHANGELOG.md -------------------------------------------------------------------------------- /websites/documentation/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/gatsby-config.mjs -------------------------------------------------------------------------------- /websites/documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/package.json -------------------------------------------------------------------------------- /websites/documentation/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore: -------------------------------------------------------------------------------- 1 | addon-components.js -------------------------------------------------------------------------------- /websites/documentation/src/code-examples/example.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo Hello World -------------------------------------------------------------------------------- /websites/documentation/src/content/beta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/src/content/beta.mdx -------------------------------------------------------------------------------- /websites/documentation/src/content/configuration/troubleshooting.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Configuration Troubleshooting 3 | --- 4 | -------------------------------------------------------------------------------- /websites/documentation/src/content/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/src/content/index.mdx -------------------------------------------------------------------------------- /websites/documentation/src/content/plan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/src/content/plan.mdx -------------------------------------------------------------------------------- /websites/documentation/src/data/navigation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/src/data/navigation.yaml -------------------------------------------------------------------------------- /websites/documentation/src/icons/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/src/icons/.gitattributes -------------------------------------------------------------------------------- /websites/documentation/src/icons/index.js: -------------------------------------------------------------------------------- 1 | export * from './generated'; 2 | -------------------------------------------------------------------------------- /websites/documentation/src/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/src/images/dog.jpg -------------------------------------------------------------------------------- /websites/documentation/static/downloads/hello.json: -------------------------------------------------------------------------------- 1 | { "message": "Hello World" } 2 | -------------------------------------------------------------------------------- /websites/documentation/static/downloads/hello.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /websites/documentation/static/html/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/documentation/static/html/hello.html -------------------------------------------------------------------------------- /websites/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/index.html -------------------------------------------------------------------------------- /websites/self-learning-smoke-test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/self-learning-smoke-test/.eslintrc.yml -------------------------------------------------------------------------------- /websites/self-learning-smoke-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/self-learning-smoke-test/CHANGELOG.md -------------------------------------------------------------------------------- /websites/self-learning-smoke-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/self-learning-smoke-test/package.json -------------------------------------------------------------------------------- /websites/site-template/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/.eslintrc.yml -------------------------------------------------------------------------------- /websites/site-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/CHANGELOG.md -------------------------------------------------------------------------------- /websites/site-template/gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/gatsby-config.mjs -------------------------------------------------------------------------------- /websites/site-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/package.json -------------------------------------------------------------------------------- /websites/site-template/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/scripts/build.sh -------------------------------------------------------------------------------- /websites/site-template/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore: -------------------------------------------------------------------------------- 1 | addon-components.js -------------------------------------------------------------------------------- /websites/site-template/src/content/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/src/content/index.mdx -------------------------------------------------------------------------------- /websites/site-template/src/data/navigation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/websites/site-template/src/data/navigation.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/commercetools-docs-kit/HEAD/yarn.lock --------------------------------------------------------------------------------