@promoboxx/graphql-gateway-types 1.696.0 → 1.698.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/graphql.schema.json +24 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -8969,6 +8969,18 @@
|
|
|
8969
8969
|
"isDeprecated": false,
|
|
8970
8970
|
"deprecationReason": null
|
|
8971
8971
|
},
|
|
8972
|
+
{
|
|
8973
|
+
"name": "brand_goals_dashboard_enabled",
|
|
8974
|
+
"description": null,
|
|
8975
|
+
"args": [],
|
|
8976
|
+
"type": {
|
|
8977
|
+
"kind": "SCALAR",
|
|
8978
|
+
"name": "Boolean",
|
|
8979
|
+
"ofType": null
|
|
8980
|
+
},
|
|
8981
|
+
"isDeprecated": false,
|
|
8982
|
+
"deprecationReason": null
|
|
8983
|
+
},
|
|
8972
8984
|
{
|
|
8973
8985
|
"name": "campaign_append_to_retailer_website_enabled",
|
|
8974
8986
|
"description": null,
|
|
@@ -9113,6 +9125,18 @@
|
|
|
9113
9125
|
"isDeprecated": false,
|
|
9114
9126
|
"deprecationReason": null
|
|
9115
9127
|
},
|
|
9128
|
+
{
|
|
9129
|
+
"name": "landing_page_imagery_enabled",
|
|
9130
|
+
"description": null,
|
|
9131
|
+
"args": [],
|
|
9132
|
+
"type": {
|
|
9133
|
+
"kind": "SCALAR",
|
|
9134
|
+
"name": "Boolean",
|
|
9135
|
+
"ofType": null
|
|
9136
|
+
},
|
|
9137
|
+
"isDeprecated": false,
|
|
9138
|
+
"deprecationReason": null
|
|
9139
|
+
},
|
|
9116
9140
|
{
|
|
9117
9141
|
"name": "limit_single_retailer_location",
|
|
9118
9142
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -1017,6 +1017,7 @@ export type BrandSettings = {
|
|
|
1017
1017
|
assets_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1018
1018
|
auto_accept_brand_requests?: Maybe<Scalars['Boolean']['output']>;
|
|
1019
1019
|
brand_content_discovery?: Maybe<Scalars['Boolean']['output']>;
|
|
1020
|
+
brand_goals_dashboard_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1020
1021
|
campaign_append_to_retailer_website_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1021
1022
|
captive_retailer_network?: Maybe<Scalars['Boolean']['output']>;
|
|
1022
1023
|
contacts_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1029,6 +1030,7 @@ export type BrandSettings = {
|
|
|
1029
1030
|
frame_campaigns_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1030
1031
|
google_ads_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1031
1032
|
instamatch_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1033
|
+
landing_page_imagery_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1032
1034
|
limit_single_retailer_location?: Maybe<Scalars['Boolean']['output']>;
|
|
1033
1035
|
match_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1034
1036
|
mobile_ads_enabled?: Maybe<Scalars['Boolean']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -986,6 +986,7 @@ type BrandSettings {
|
|
|
986
986
|
assets_enabled: Boolean
|
|
987
987
|
auto_accept_brand_requests: Boolean
|
|
988
988
|
brand_content_discovery: Boolean
|
|
989
|
+
brand_goals_dashboard_enabled: Boolean
|
|
989
990
|
campaign_append_to_retailer_website_enabled: Boolean
|
|
990
991
|
captive_retailer_network: Boolean
|
|
991
992
|
contacts_enabled: Boolean
|
|
@@ -998,6 +999,7 @@ type BrandSettings {
|
|
|
998
999
|
frame_campaigns_enabled: Boolean
|
|
999
1000
|
google_ads_enabled: Boolean
|
|
1000
1001
|
instamatch_enabled: Boolean
|
|
1002
|
+
landing_page_imagery_enabled: Boolean
|
|
1001
1003
|
limit_single_retailer_location: Boolean
|
|
1002
1004
|
match_enabled: Boolean
|
|
1003
1005
|
mobile_ads_enabled: Boolean
|