diff --git a/src/graphql/advertiser.generated.tsx b/src/graphql/advertiser.generated.tsx index e45b3ff77..26f5cf356 100644 --- a/src/graphql/advertiser.generated.tsx +++ b/src/graphql/advertiser.generated.tsx @@ -136,6 +136,7 @@ export type AdvertiserPriceFragment = { price: string; billingType: Types.BillingType; format: Types.CampaignFormat; + isDefault: boolean; }; export type AdvertiserImagesQueryVariables = Types.Exact<{ @@ -164,6 +165,7 @@ export type AdvertiserPricesQuery = { price: string; billingType: Types.BillingType; format: Types.CampaignFormat; + isDefault: boolean; }>; } | null; }; @@ -234,6 +236,7 @@ export const AdvertiserPriceFragmentDoc = gql` price billingType format + isDefault } `; export const AdvertiserDocument = gql` diff --git a/src/graphql/advertiser.graphql b/src/graphql/advertiser.graphql index f8b95b5f0..61795c772 100644 --- a/src/graphql/advertiser.graphql +++ b/src/graphql/advertiser.graphql @@ -69,6 +69,7 @@ fragment AdvertiserPrice on AdvertiserPrice { price billingType format + isDefault } query advertiserImages($id: String!) {