Skip to content

Commit

Permalink
fix fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
lkostrowski committed Oct 4, 2024
1 parent 3b59c42 commit b7e349d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/channels/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
{
__typename: "Channel",
Expand Down Expand Up @@ -98,6 +102,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
{
__typename: "Channel",
Expand Down Expand Up @@ -138,6 +146,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
{
__typename: "Channel",
Expand Down Expand Up @@ -178,6 +190,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
{
__typename: "Channel",
Expand Down Expand Up @@ -218,6 +234,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
{
__typename: "Channel",
Expand Down Expand Up @@ -258,6 +278,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
{
__typename: "Channel",
Expand Down Expand Up @@ -298,6 +322,10 @@ export const channelsList: ChannelDetailsFragment[] = [
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
},
];

Expand Down Expand Up @@ -340,6 +368,10 @@ export const channel: ChannelDetailsFragment = {
__typename: "PaymentSettings",
defaultTransactionFlowStrategy: TransactionFlowStrategyEnum.CHARGE,
},
checkoutSettings: {
automaticallyCompleteFullyPaidCheckouts: true,
__typename: "CheckoutSettings",
},
};

type ProductChannelsWithPricing = NonNullable<ProductFragment["channelListings"]>[0] & {
Expand Down

0 comments on commit b7e349d

Please sign in to comment.