@@ -668,7 +668,7 @@ export declare type Entitlement = {
668668 /** Type of resource related to the entitlement */
669669 type : EntitlementResourceTypeEnum ;
670670 /** Resource related to the entitlement */
671- resource : EntitlementResource ;
671+ resource ?: Maybe < EntitlementResource > ;
672672 /** Set of permissions granted to the related user */
673673 permissions : Array < AuthPermission > ;
674674} ;
@@ -750,7 +750,7 @@ export declare type MarketingAd = ResultResource & {
750750 /** Marketing campaigns related to the marketing ad */
751751 marketingCampaign : MarketingCampaign ;
752752 /** Vendor related to the marketing ad */
753- vendor : Vendor ;
753+ vendor ?: Maybe < Vendor > ;
754754} ;
755755/**
756756 * Marketing ad represents an specific ad on a platform belonging
@@ -800,11 +800,11 @@ export declare type MarketingCampaign = ResultResource & {
800800 /** Products referenced by the marketing campaign */
801801 products : ProductConnection ;
802802 /** Vendor related to the marketing campaign */
803- vendor : Vendor ;
803+ vendor ?: Maybe < Vendor > ;
804804 /** Catalog related to the marketing campaign */
805805 catalog : Catalog ;
806806 /** Campaign template related to the marketing campaign */
807- campaignTemplate : CampaignTemplate ;
807+ campaignTemplate ?: Maybe < CampaignTemplate > ;
808808 /** Media channel the marketing campaign is delivering to */
809809 mediaChannel : MediaChannel ;
810810 /** Results referencing the marketing campaign */
@@ -922,7 +922,7 @@ export declare type Marketplace = EntitlementResource & {
922922 /** Name of the marketplace */
923923 name : Scalars [ 'NonEmptyString' ] ;
924924 /** Organization related to the marketplace */
925- organization : Organization ;
925+ organization ?: Maybe < Organization > ;
926926 /** Media channels related to the marketplace */
927927 mediaChannels : MediaChannelConnection ;
928928 /** Campaign templates related to the marketplace */
@@ -1064,7 +1064,7 @@ export declare type MediaChannel = EntitlementResource & {
10641064 /** Product catalogs referenced by the media channel */
10651065 catalogs : CatalogConnection ;
10661066 /** Marketplace related to the media channel */
1067- marketplace : Marketplace ;
1067+ marketplace ?: Maybe < Marketplace > ;
10681068} ;
10691069/** Media channel represents an ad account on a specific platform */
10701070export declare type MediaChannelCatalogsArgs = {
@@ -1491,7 +1491,7 @@ export declare type Product = {
14911491 /** Data related to the product */
14921492 metadata : Scalars [ 'JSONObject' ] ;
14931493 /** Vendor owning the product */
1494- vendor : Vendor ;
1494+ vendor ?: Maybe < Vendor > ;
14951495 /** System status of the product */
14961496 systemStatus : SystemStatus ;
14971497 /** Validation errors of the product */
@@ -1821,7 +1821,7 @@ export declare type Result = {
18211821 /** Resource related to the result */
18221822 resource : ResultResource ;
18231823 /** Vendor related to the result */
1824- vendor : Vendor ;
1824+ vendor ?: Maybe < Vendor > ;
18251825} ;
18261826/** Analytics data referenced by a result */
18271827export declare type ResultAnalytics = {
@@ -1861,7 +1861,7 @@ export declare type ResultResource = {
18611861 /** Date and time the result resource was last modified */
18621862 lastChangeDate : Scalars [ 'DateISO' ] ;
18631863 /** Vendor related with the result resource */
1864- vendor : Vendor ;
1864+ vendor ?: Maybe < Vendor > ;
18651865} ;
18661866/** Resource related to a result */
18671867export declare enum ResultResourceTypeEnum {
@@ -2521,7 +2521,7 @@ export declare type EntitlementResolvers<ContextType = any, ParentType extends R
25212521 lastChangeDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
25222522 user ?: Resolver < ResolversTypes [ 'User' ] , ParentType , ContextType > ;
25232523 type ?: Resolver < ResolversTypes [ 'EntitlementResourceTypeEnum' ] , ParentType , ContextType > ;
2524- resource ?: Resolver < ResolversTypes [ 'EntitlementResource' ] , ParentType , ContextType > ;
2524+ resource ?: Resolver < Maybe < ResolversTypes [ 'EntitlementResource' ] > , ParentType , ContextType > ;
25252525 permissions ?: Resolver < Array < ResolversTypes [ 'AuthPermission' ] > , ParentType , ContextType > ;
25262526} ;
25272527export declare type EntitlementConnectionResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'EntitlementConnection' ] = ResolversParentTypes [ 'EntitlementConnection' ] > = {
@@ -2558,7 +2558,7 @@ export declare type MarketingAdResolvers<ContextType = any, ParentType extends R
25582558 resultsSource ?: Resolver < Array < Maybe < ResolversTypes [ 'NonEmptyString' ] > > , ParentType , ContextType > ;
25592559 results ?: Resolver < ResolversTypes [ 'ResultConnection' ] , ParentType , ContextType , MarketingAdResultsArgs > ;
25602560 marketingCampaign ?: Resolver < ResolversTypes [ 'MarketingCampaign' ] , ParentType , ContextType > ;
2561- vendor ?: Resolver < ResolversTypes [ 'Vendor' ] , ParentType , ContextType > ;
2561+ vendor ?: Resolver < Maybe < ResolversTypes [ 'Vendor' ] > , ParentType , ContextType > ;
25622562} ;
25632563export declare type MarketingAdConnectionResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'MarketingAdConnection' ] = ResolversParentTypes [ 'MarketingAdConnection' ] > = {
25642564 edges ?: Resolver < Array < ResolversTypes [ 'MarketingAdEdge' ] > , ParentType , ContextType > ;
@@ -2576,9 +2576,9 @@ export declare type MarketingCampaignResolvers<ContextType = any, ParentType ext
25762576 status ?: Resolver < ResolversTypes [ 'MarketingCampaignStatus' ] , ParentType , ContextType > ;
25772577 marketingAds ?: Resolver < ResolversTypes [ 'MarketingAdConnection' ] , ParentType , ContextType , MarketingCampaignMarketingAdsArgs > ;
25782578 products ?: Resolver < ResolversTypes [ 'ProductConnection' ] , ParentType , ContextType , RequireFields < MarketingCampaignProductsArgs , 'showDeleted' > > ;
2579- vendor ?: Resolver < ResolversTypes [ 'Vendor' ] , ParentType , ContextType > ;
2579+ vendor ?: Resolver < Maybe < ResolversTypes [ 'Vendor' ] > , ParentType , ContextType > ;
25802580 catalog ?: Resolver < ResolversTypes [ 'Catalog' ] , ParentType , ContextType > ;
2581- campaignTemplate ?: Resolver < ResolversTypes [ 'CampaignTemplate' ] , ParentType , ContextType > ;
2581+ campaignTemplate ?: Resolver < Maybe < ResolversTypes [ 'CampaignTemplate' ] > , ParentType , ContextType > ;
25822582 mediaChannel ?: Resolver < ResolversTypes [ 'MediaChannel' ] , ParentType , ContextType > ;
25832583 results ?: Resolver < ResolversTypes [ 'ResultConnection' ] , ParentType , ContextType , MarketingCampaignResultsArgs > ;
25842584 creativeSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
@@ -2600,7 +2600,7 @@ export declare type MarketplaceResolvers<ContextType = any, ParentType extends R
26002600 creationDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
26012601 lastChangeDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
26022602 name ?: Resolver < ResolversTypes [ 'NonEmptyString' ] , ParentType , ContextType > ;
2603- organization ?: Resolver < ResolversTypes [ 'Organization' ] , ParentType , ContextType > ;
2603+ organization ?: Resolver < Maybe < ResolversTypes [ 'Organization' ] > , ParentType , ContextType > ;
26042604 mediaChannels ?: Resolver < ResolversTypes [ 'MediaChannelConnection' ] , ParentType , ContextType , RequireFields < MarketplaceMediaChannelsArgs , 'showDeleted' > > ;
26052605 campaignTemplates ?: Resolver < ResolversTypes [ 'CampaignTemplateConnection' ] , ParentType , ContextType , MarketplaceCampaignTemplatesArgs > ;
26062606 vendors ?: Resolver < ResolversTypes [ 'VendorConnection' ] , ParentType , ContextType , RequireFields < MarketplaceVendorsArgs , 'showDeleted' > > ;
@@ -2639,7 +2639,7 @@ export declare type MediaChannelResolvers<ContextType = any, ParentType extends
26392639 systemStatus ?: Resolver < ResolversTypes [ 'SystemStatus' ] , ParentType , ContextType > ;
26402640 errors ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
26412641 catalogs ?: Resolver < ResolversTypes [ 'CatalogConnection' ] , ParentType , ContextType , RequireFields < MediaChannelCatalogsArgs , 'showDeleted' > > ;
2642- marketplace ?: Resolver < ResolversTypes [ 'Marketplace' ] , ParentType , ContextType > ;
2642+ marketplace ?: Resolver < Maybe < ResolversTypes [ 'Marketplace' ] > , ParentType , ContextType > ;
26432643} ;
26442644export declare type MediaChannelConnectionResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'MediaChannelConnection' ] = ResolversParentTypes [ 'MediaChannelConnection' ] > = {
26452645 edges ?: Resolver < Array < ResolversTypes [ 'MediaChannelEdge' ] > , ParentType , ContextType > ;
@@ -2735,7 +2735,7 @@ export declare type ProductResolvers<ContextType = any, ParentType extends Resol
27352735 marketingCampaigns ?: Resolver < ResolversTypes [ 'MarketingCampaignConnection' ] , ParentType , ContextType , RequireFields < ProductMarketingCampaignsArgs , 'showDeleted' > > ;
27362736 catalog ?: Resolver < ResolversTypes [ 'Catalog' ] , ParentType , ContextType > ;
27372737 metadata ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
2738- vendor ?: Resolver < ResolversTypes [ 'Vendor' ] , ParentType , ContextType > ;
2738+ vendor ?: Resolver < Maybe < ResolversTypes [ 'Vendor' ] > , ParentType , ContextType > ;
27392739 systemStatus ?: Resolver < ResolversTypes [ 'SystemStatus' ] , ParentType , ContextType > ;
27402740 errors ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
27412741 warnings ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
@@ -2791,7 +2791,7 @@ export declare type ResultResolvers<ContextType = any, ParentType extends Resolv
27912791 analytics ?: Resolver < ResolversTypes [ 'ResultAnalytics' ] , ParentType , ContextType > ;
27922792 type ?: Resolver < ResolversTypes [ 'ResultResourceTypeEnum' ] , ParentType , ContextType > ;
27932793 resource ?: Resolver < ResolversTypes [ 'ResultResource' ] , ParentType , ContextType > ;
2794- vendor ?: Resolver < ResolversTypes [ 'Vendor' ] , ParentType , ContextType > ;
2794+ vendor ?: Resolver < Maybe < ResolversTypes [ 'Vendor' ] > , ParentType , ContextType > ;
27952795} ;
27962796export declare type ResultAnalyticsResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'ResultAnalytics' ] = ResolversParentTypes [ 'ResultAnalytics' ] > = {
27972797 results ?: Resolver < Maybe < ResolversTypes [ 'Int' ] > , ParentType , ContextType > ;
@@ -2814,7 +2814,7 @@ export declare type ResultResourceResolvers<ContextType = any, ParentType extend
28142814 id ?: Resolver < ResolversTypes [ 'ObjectId' ] , ParentType , ContextType > ;
28152815 creationDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
28162816 lastChangeDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
2817- vendor ?: Resolver < ResolversTypes [ 'Vendor' ] , ParentType , ContextType > ;
2817+ vendor ?: Resolver < Maybe < ResolversTypes [ 'Vendor' ] > , ParentType , ContextType > ;
28182818} ;
28192819export declare type TokenResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'Token' ] = ResolversParentTypes [ 'Token' ] > = {
28202820 token ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
0 commit comments