Version Packages
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@commercetools/[email protected]
Patch Changes
-
#993
133dd9eThanks @CarlosCortizasCT! - We've migrated thePaymentandPaymentDraftmodels to the new implementation patterns.This change does not have any impact on consumers, however the
PaymentandPaymentDraftmodels are now deprecated and you're expected to start using thePaymentGraphqlorPaymentDraftRestmodels instead depending of the type of API you're mocking.import { PaymentGraphql, PaymentRest, PaymentDraftGraphql, PaymentDraftRest, } from '@commercetools/composable-commerce-test-data/payment'; const graphqlPayment = PaymentGraphql.random().build(); const restPayment = PaymentRest.random().build(); const graphqlPaymentDraft = PaymentDraftGraphql.random().build(); const restPaymentDraft = PaymentDraftRest.random().build(); -
#991
f3729ecThanks @CarlosCortizasCT! - We've migrated thePaymentStatusandPaymentStatusDraftmodels to the new implementation patterns.This change does not have any impact on consumers, however the
PaymentStatusandPaymentStatusDraftmodels are now deprecated and you're expected to start using thePaymentStatusGraphqlorPaymentStatusDraftRestmodels instead depending of the type of API you're mocking.import { PaymentStatusGraphql, PaymentStatusRest, PaymentStatusDraftGraphql, PaymentStatusDraftRest, } from '@commercetools/composable-commerce-test-data/payment'; const graphqlPaymentStatus = PaymentStatusGraphql.random().build(); const restPaymentStatus = PaymentStatusRest.random().build(); const graphqlPaymentStatusDraft = PaymentStatusDraftGraphql.random().build(); const restPaymentStatusDraft = PaymentStatusDraftRest.random().build(); -
#992
52abb24Thanks @CarlosCortizasCT! - We've migrated thePaymentMethodInfoandPaymentMethodInfoDraftmodels to the new implementation patterns.This change does not have any impact on consumers, however the
PaymentMethodInfoandPaymentMethodInfoDraftmodels are now deprecated and you're expected to start using thePaymentMethodInfoGraphqlorPaymentMethodInfoDraftRestmodels instead depending of the type of API you're mocking.import { PaymentMethodInfoGraphql, PaymentMethodInfoRest, PaymentMethodInfoDraftGraphql, PaymentMethodInfoDraftRest, } from '@commercetools/composable-commerce-test-data/payment'; const graphqlPaymentMethodInfo = PaymentMethodInfoGraphql.random().build(); const restPaymentMethodInfo = PaymentMethodInfoRest.random().build(); const graphqlPaymentMethodInfoDraft = PaymentMethodInfoDraftGraphql.random().build(); const restPaymentMethodInfoDraft = PaymentMethodInfoDraftRest.random().build(); -
#989
fab39e9Thanks @CarlosCortizasCT! - We've migrated theTransactionandTransactionDraftmodels to the new implementation patterns.This change does not have any impact on consumers, however the
TransactionandTransactionDraftmodels are now deprecated and you're expected to start using theTransactionGraphqlorTransactionDraftRestmodels instead depending of the type of API you're mocking.import { TransactionGraphql, TransactionRest, TransactionDraftGraphql, TransactionDraftRest, } from '@commercetools/composable-commerce-test-data/payment'; const graphqlTransaction = TransactionGraphql.random().build(); const restTransaction = TransactionRest.random().build(); const graphqlTransactionDraft = TransactionDraftGraphql.random().build(); const restTransactionDraft = TransactionDraftRest.random().build();