@@ -194,7 +194,7 @@ export declare type CampaignTemplate = {
194
194
/** The custom key performance indicator used to derive results data */
195
195
kpi ?: Maybe < Scalars [ 'String' ] > ;
196
196
/** Marketplace the campaign template was created for */
197
- marketplace : Marketplace ;
197
+ marketplace ?: Maybe < Marketplace > ;
198
198
/** Marketing campaigns that are using this campaign template */
199
199
marketingCampaigns : MarketingCampaignConnection ;
200
200
/** Historical list of GCPX rates */
@@ -250,15 +250,15 @@ export declare type Catalog = {
250
250
/** Date and time of last updated */
251
251
lastChangeDate : Scalars [ 'DateISO' ] ;
252
252
/** Name of the product catalog */
253
- name : Scalars [ 'NonEmptyString' ] ;
253
+ name ?: Maybe < Scalars [ 'String' ] > ;
254
254
/** Category of the products referenced by the product catalog */
255
- catalogType : CatalogType ;
255
+ catalogType ?: Maybe < CatalogType > ;
256
256
/** Id of the product catalog on the related platform */
257
257
remoteId ?: Maybe < Scalars [ 'String' ] > ;
258
258
/** System status of the product catalog */
259
259
systemStatus : SystemStatus ;
260
260
/** Data related to the product catalog stored on the remote platform */
261
- remoteState : Scalars [ 'JSONObject' ] ;
261
+ remoteState ?: Maybe < Scalars [ 'JSONObject' ] > ;
262
262
/** Facebook data feed id referenced by the product catalog */
263
263
dataFeedId ?: Maybe < Scalars [ 'String' ] > ;
264
264
/** Facebook app and pixel ids associated to the product catalog */
@@ -876,7 +876,7 @@ export declare type MarketingCampaign = ResultResource & NotificationResource &
876
876
/** Marketing campaign scheduling data. [Run Time Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-run-time-specification-runtimespec) */
877
877
runTimeSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
878
878
/** Marketing campaign location data. [Location Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-location-specification-locationspec) */
879
- locationSpec : Scalars [ 'JSONObject' ] ;
879
+ locationSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
880
880
/** Marketing campaign GCPX data. [Conversion Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-conversion-specification-conversionspec) */
881
881
conversionSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
882
882
/** Start date of the campaign */
@@ -1014,7 +1014,7 @@ export declare type MarketingCampaignSnapshot = {
1014
1014
/** Marketing campaign scheduling data. [Run Time Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-run-time-specification-runtimespec) */
1015
1015
runTimeSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
1016
1016
/** Marketing campaign location data. [Location Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-location-specification-locationspec) */
1017
- locationSpec : Scalars [ 'JSONObject' ] ;
1017
+ locationSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
1018
1018
/** The key performance indicator used to determine analytics results */
1019
1019
kpi ?: Maybe < Scalars [ 'String' ] > ;
1020
1020
/** Product ids */
@@ -1233,7 +1233,7 @@ export declare type MediaChannel = EntitlementResource & {
1233
1233
/** Id of the media channel on the corresponding platform */
1234
1234
remoteId ?: Maybe < Scalars [ 'String' ] > ;
1235
1235
/** Data related to the media channel stored on the remote platform */
1236
- remoteState : Scalars [ 'JSONObject' ] ;
1236
+ remoteState ?: Maybe < Scalars [ 'JSONObject' ] > ;
1237
1237
/** Currency code of the media channel */
1238
1238
currency ?: Maybe < Scalars [ 'NonEmptyString' ] > ;
1239
1239
/** Currency code of the media channel */
@@ -1937,7 +1937,7 @@ export declare type Product = ResultResource & {
1937
1937
/** Data related to the product stored on the remote platform */
1938
1938
remoteState ?: Maybe < Scalars [ 'JSONObject' ] > ;
1939
1939
/** Data related to the product. [Product Metadata](https://docs.adgo.io/API/ProductMetadata) */
1940
- metadata : Scalars [ 'JSONObject' ] ;
1940
+ metadata ?: Maybe < Scalars [ 'JSONObject' ] > ;
1941
1941
/** True if the product was created externally and imported */
1942
1942
imported : Scalars [ 'Boolean' ] ;
1943
1943
/** Results related to the product */
@@ -2995,7 +2995,7 @@ export declare type CampaignTemplateResolvers<ContextType = any, ParentType exte
2995
2995
errors ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
2996
2996
warnings ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
2997
2997
kpi ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
2998
- marketplace ?: Resolver < ResolversTypes [ 'Marketplace' ] , ParentType , ContextType > ;
2998
+ marketplace ?: Resolver < Maybe < ResolversTypes [ 'Marketplace' ] > , ParentType , ContextType > ;
2999
2999
marketingCampaigns ?: Resolver < ResolversTypes [ 'MarketingCampaignConnection' ] , ParentType , ContextType , RequireFields < CampaignTemplateMarketingCampaignsArgs , 'showDeleted' > > ;
3000
3000
GCPXHistory ?: Resolver < ResolversTypes [ 'GCPXConnection' ] , ParentType , ContextType , CampaignTemplateGcpxHistoryArgs > ;
3001
3001
currentGCPX ?: Resolver < Maybe < ResolversTypes [ 'GCPX' ] > , ParentType , ContextType > ;
@@ -3013,11 +3013,11 @@ export declare type CatalogResolvers<ContextType = any, ParentType extends Resol
3013
3013
id ?: Resolver < ResolversTypes [ 'ObjectId' ] , ParentType , ContextType > ;
3014
3014
creationDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
3015
3015
lastChangeDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
3016
- name ?: Resolver < ResolversTypes [ 'NonEmptyString' ] , ParentType , ContextType > ;
3017
- catalogType ?: Resolver < ResolversTypes [ 'CatalogType' ] , ParentType , ContextType > ;
3016
+ name ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3017
+ catalogType ?: Resolver < Maybe < ResolversTypes [ 'CatalogType' ] > , ParentType , ContextType > ;
3018
3018
remoteId ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3019
3019
systemStatus ?: Resolver < ResolversTypes [ 'SystemStatus' ] , ParentType , ContextType > ;
3020
- remoteState ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3020
+ remoteState ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3021
3021
dataFeedId ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3022
3022
externalEventSourceIds ?: Resolver < Array < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3023
3023
productSource ?: Resolver < ResolversTypes [ 'PRODUCT_SOURCE' ] , ParentType , ContextType > ;
@@ -3228,7 +3228,7 @@ export declare type MarketingCampaignResolvers<ContextType = any, ParentType ext
3228
3228
status ?: Resolver < ResolversTypes [ 'MarketingCampaignStatus' ] , ParentType , ContextType > ;
3229
3229
creativeSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3230
3230
runTimeSpec ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3231
- locationSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3231
+ locationSpec ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3232
3232
conversionSpec ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3233
3233
startDate ?: Resolver < ResolversTypes [ 'DateISO' ] , ParentType , ContextType > ;
3234
3234
endDate ?: Resolver < Maybe < ResolversTypes [ 'DateISO' ] > , ParentType , ContextType > ;
@@ -3262,7 +3262,7 @@ export declare type MarketingCampaignSnapshotResolvers<ContextType = any, Parent
3262
3262
status ?: Resolver < ResolversTypes [ 'MarketingCampaignStatus' ] , ParentType , ContextType > ;
3263
3263
creativeSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3264
3264
runTimeSpec ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3265
- locationSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3265
+ locationSpec ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3266
3266
kpi ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3267
3267
productIds ?: Resolver < Maybe < Array < ResolversTypes [ 'ObjectId' ] > > , ParentType , ContextType > ;
3268
3268
} ;
@@ -3319,7 +3319,7 @@ export declare type MediaChannelResolvers<ContextType = any, ParentType extends
3319
3319
warnings ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
3320
3320
platform ?: Resolver < ResolversTypes [ 'Platform' ] , ParentType , ContextType > ;
3321
3321
remoteId ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3322
- remoteState ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3322
+ remoteState ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3323
3323
currency ?: Resolver < Maybe < ResolversTypes [ 'NonEmptyString' ] > , ParentType , ContextType > ;
3324
3324
currencyCode ?: Resolver < Maybe < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
3325
3325
currencySymbol ?: Resolver < Maybe < ResolversTypes [ 'NonEmptyString' ] > , ParentType , ContextType > ;
@@ -3481,7 +3481,7 @@ export declare type ProductResolvers<ContextType = any, ParentType extends Resol
3481
3481
name ?: Resolver < ResolversTypes [ 'NonEmptyString' ] , ParentType , ContextType > ;
3482
3482
sku ?: Resolver < ResolversTypes [ 'NonEmptyString' ] , ParentType , ContextType > ;
3483
3483
remoteState ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3484
- metadata ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
3484
+ metadata ?: Resolver < Maybe < ResolversTypes [ 'JSONObject' ] > , ParentType , ContextType > ;
3485
3485
imported ?: Resolver < ResolversTypes [ 'Boolean' ] , ParentType , ContextType > ;
3486
3486
results ?: Resolver < ResolversTypes [ 'ResultConnection' ] , ParentType , ContextType , RequireFields < ProductResultsArgs , 'breakdown' > > ;
3487
3487
marketingCampaigns ?: Resolver < ResolversTypes [ 'MarketingCampaignConnection' ] , ParentType , ContextType , RequireFields < ProductMarketingCampaignsArgs , 'showDeleted' > > ;
0 commit comments