@@ -28,7 +28,7 @@ export declare type Scalars = {
2828 /**
2929 * Accepts a single filterObject (`{field: NonEmptyString!, operator: OPERATOR!,
3030 * value: [String]}`), a single array of filterObjects (creates an AND'ed query),
31- * or a two dimentional array (each array is OR'ed) to produce your resource query.
31+ * or a two dimensional array (each array is OR'ed) to produce your resource query.
3232 * Refer to the following JSON schema for more filter restriction details:
3333 *
3434 * ```json
@@ -755,6 +755,8 @@ export declare type MarketingCampaign = ResultResource & {
755755 creativeSpec : Scalars [ 'JSONObject' ] ;
756756 /** Marketing campaign scheduling data. [Run Time Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-run-time-specification-runtimespec) */
757757 runTimeSpec : Scalars [ 'JSONObject' ] ;
758+ /** Marketing campaign location data. [Location Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-location-specification-locationspec) */
759+ locationSpec ?: Maybe < Array < Scalars [ 'JSONObject' ] > > ;
758760 /** Marketing ads contained by the marketing campaign */
759761 marketingAds : MarketingAdConnection ;
760762 /** Products referenced by the marketing campaign */
@@ -831,6 +833,8 @@ export declare type MarketingCampaignInput = {
831833 creativeSpec : Scalars [ 'JSONObject' ] ;
832834 /** Marketing campaign scheduling data. [Run Time Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-run-time-specification-runtimespec) */
833835 runTimeSpec : Scalars [ 'JSONObject' ] ;
836+ /** Marketing campaign location data. [Location Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-location-specification-locationspec) */
837+ locationSpec ?: Maybe < Array < Scalars [ 'JSONObject' ] > > ;
834838 /** Ids of the products advertised in the marketing campaign */
835839 productIds : Array < Scalars [ 'ObjectId' ] > ;
836840 /** Delivering status of the marketing campaign */
@@ -849,6 +853,8 @@ export declare type MarketingCampaignUpdateInput = {
849853 creativeSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
850854 /** Marketing campaign scheduling data. [Run Time Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-run-time-specification-runtimespec) */
851855 runTimeSpec ?: Maybe < Scalars [ 'JSONObject' ] > ;
856+ /** Marketing campaign location data. [Location Specification](https://docs.adgo.io/API/MarketingCampaign#marketingcampaign-location-specification-locationspec) */
857+ locationSpec ?: Maybe < Array < Scalars [ 'JSONObject' ] > > ;
852858 /** Delivering status of the marketing campaign */
853859 status ?: Maybe < MarketingCampaignStatus > ;
854860 /** Name of the marketing campaign */
@@ -936,7 +942,6 @@ export declare type MarketplaceVendorTokensArgs = {
936942 before ?: Maybe < Scalars [ 'String' ] > ;
937943 sort ?: Maybe < SortInput > ;
938944 filter ?: Maybe < Scalars [ 'FilterInput' ] > ;
939- showDeleted ?: Maybe < Scalars [ 'Boolean' ] > ;
940945} ;
941946/**
942947 * Marketplace represents a collection of media channels, campaign templates and
@@ -1961,6 +1966,10 @@ export declare type User = Me & {
19611966 organizations : OrganizationConnection ;
19621967 /** Entitlements granting permissions to the user */
19631968 entitlements : EntitlementConnection ;
1969+ /** Set to true to receive urgent emails such as deprecation notices and new releases */
1970+ noticeOptIn : Scalars [ 'Boolean' ] ;
1971+ /** Set to true to receive marketing emails such as "tips and hints" */
1972+ newsletterOptIn : Scalars [ 'Boolean' ] ;
19641973} ;
19651974/** User of the system that is granted access to resources through entitlements */
19661975export declare type UserOrganizationsArgs = {
@@ -2012,6 +2021,10 @@ export declare type UserUpdateInput = {
20122021 lastName ?: Maybe < Scalars [ 'NonEmptyString' ] > ;
20132022 /** Password of the user */
20142023 password ?: Maybe < Scalars [ 'NonEmptyString' ] > ;
2024+ /** Subscription status of user to notices */
2025+ noticeOptIn ?: Maybe < Scalars [ 'Boolean' ] > ;
2026+ /** Subscription status of user to newsletter */
2027+ newsletterOptIn ?: Maybe < Scalars [ 'Boolean' ] > ;
20152028} ;
20162029/** Vendor belongs to a marketplace and is granted access to specific products they can use to create a marketing campaign */
20172030export declare type Vendor = Me & {
@@ -2594,6 +2607,7 @@ export declare type MarketingCampaignResolvers<ContextType = any, ParentType ext
25942607 status ?: Resolver < ResolversTypes [ 'MarketingCampaignStatus' ] , ParentType , ContextType > ;
25952608 creativeSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
25962609 runTimeSpec ?: Resolver < ResolversTypes [ 'JSONObject' ] , ParentType , ContextType > ;
2610+ locationSpec ?: Resolver < Maybe < Array < ResolversTypes [ 'JSONObject' ] > > , ParentType , ContextType > ;
25972611 marketingAds ?: Resolver < ResolversTypes [ 'MarketingAdConnection' ] , ParentType , ContextType , RequireFields < MarketingCampaignMarketingAdsArgs , 'showDeleted' > > ;
25982612 products ?: Resolver < ResolversTypes [ 'ProductConnection' ] , ParentType , ContextType , RequireFields < MarketingCampaignProductsArgs , 'showDeleted' > > ;
25992613 catalog ?: Resolver < ResolversTypes [ 'Catalog' ] , ParentType , ContextType > ;
@@ -2621,7 +2635,7 @@ export declare type MarketplaceResolvers<ContextType = any, ParentType extends R
26212635 mediaChannels ?: Resolver < ResolversTypes [ 'MediaChannelConnection' ] , ParentType , ContextType , RequireFields < MarketplaceMediaChannelsArgs , 'showDeleted' > > ;
26222636 campaignTemplates ?: Resolver < ResolversTypes [ 'CampaignTemplateConnection' ] , ParentType , ContextType , RequireFields < MarketplaceCampaignTemplatesArgs , 'showDeleted' > > ;
26232637 vendors ?: Resolver < ResolversTypes [ 'VendorConnection' ] , ParentType , ContextType , RequireFields < MarketplaceVendorsArgs , 'showDeleted' > > ;
2624- vendorTokens ?: Resolver < ResolversTypes [ 'VendorTokenConnection' ] , ParentType , ContextType , RequireFields < MarketplaceVendorTokensArgs , 'showDeleted' > > ;
2638+ vendorTokens ?: Resolver < ResolversTypes [ 'VendorTokenConnection' ] , ParentType , ContextType , MarketplaceVendorTokensArgs > ;
26252639 creativeTemplates ?: Resolver < ResolversTypes [ 'CreativeTemplateConnection' ] , ParentType , ContextType , RequireFields < MarketplaceCreativeTemplatesArgs , 'showDeleted' > > ;
26262640 products ?: Resolver < ResolversTypes [ 'ProductConnection' ] , ParentType , ContextType , RequireFields < MarketplaceProductsArgs , 'showDeleted' > > ;
26272641} ;
@@ -2880,6 +2894,8 @@ export declare type UserResolvers<ContextType = any, ParentType extends Resolver
28802894 lastName ?: Resolver < Maybe < ResolversTypes [ 'NonEmptyString' ] > , ParentType , ContextType > ;
28812895 organizations ?: Resolver < ResolversTypes [ 'OrganizationConnection' ] , ParentType , ContextType , RequireFields < UserOrganizationsArgs , 'showDeleted' > > ;
28822896 entitlements ?: Resolver < ResolversTypes [ 'EntitlementConnection' ] , ParentType , ContextType , UserEntitlementsArgs > ;
2897+ noticeOptIn ?: Resolver < ResolversTypes [ 'Boolean' ] , ParentType , ContextType > ;
2898+ newsletterOptIn ?: Resolver < ResolversTypes [ 'Boolean' ] , ParentType , ContextType > ;
28832899} ;
28842900export declare type UserConnectionResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'UserConnection' ] = ResolversParentTypes [ 'UserConnection' ] > = {
28852901 edges ?: Resolver < Array < ResolversTypes [ 'UserEdge' ] > , ParentType , ContextType > ;
0 commit comments