@promoboxx/graphql-gateway-types 1.697.0 → 1.699.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.
@@ -9126,7 +9126,7 @@
9126
9126
  "deprecationReason": null
9127
9127
  },
9128
9128
  {
9129
- "name": "landing_page_imagaery_enabled",
9129
+ "name": "landing_page_imagery_enabled",
9130
9130
  "description": null,
9131
9131
  "args": [],
9132
9132
  "type": {
@@ -12283,6 +12283,18 @@
12283
12283
  },
12284
12284
  "isDeprecated": false,
12285
12285
  "deprecationReason": null
12286
+ },
12287
+ {
12288
+ "name": "welcome",
12289
+ "description": null,
12290
+ "args": [],
12291
+ "type": {
12292
+ "kind": "SCALAR",
12293
+ "name": "Boolean",
12294
+ "ofType": null
12295
+ },
12296
+ "isDeprecated": false,
12297
+ "deprecationReason": null
12286
12298
  }
12287
12299
  ],
12288
12300
  "inputFields": null,
@@ -12755,6 +12767,18 @@
12755
12767
  "defaultValue": null,
12756
12768
  "isDeprecated": false,
12757
12769
  "deprecationReason": null
12770
+ },
12771
+ {
12772
+ "name": "welcome",
12773
+ "description": null,
12774
+ "type": {
12775
+ "kind": "SCALAR",
12776
+ "name": "Boolean",
12777
+ "ofType": null
12778
+ },
12779
+ "defaultValue": null,
12780
+ "isDeprecated": false,
12781
+ "deprecationReason": null
12758
12782
  }
12759
12783
  ],
12760
12784
  "interfaces": null,
@@ -18191,6 +18215,18 @@
18191
18215
  "defaultValue": null,
18192
18216
  "isDeprecated": false,
18193
18217
  "deprecationReason": null
18218
+ },
18219
+ {
18220
+ "name": "welcome",
18221
+ "description": null,
18222
+ "type": {
18223
+ "kind": "SCALAR",
18224
+ "name": "Boolean",
18225
+ "ofType": null
18226
+ },
18227
+ "defaultValue": null,
18228
+ "isDeprecated": false,
18229
+ "deprecationReason": null
18194
18230
  }
18195
18231
  ],
18196
18232
  "interfaces": null,
package/index.d.ts CHANGED
@@ -1030,7 +1030,7 @@ export type BrandSettings = {
1030
1030
  frame_campaigns_enabled?: Maybe<Scalars['Boolean']['output']>;
1031
1031
  google_ads_enabled?: Maybe<Scalars['Boolean']['output']>;
1032
1032
  instamatch_enabled?: Maybe<Scalars['Boolean']['output']>;
1033
- landing_page_imagaery_enabled?: Maybe<Scalars['Boolean']['output']>;
1033
+ landing_page_imagery_enabled?: Maybe<Scalars['Boolean']['output']>;
1034
1034
  limit_single_retailer_location?: Maybe<Scalars['Boolean']['output']>;
1035
1035
  match_enabled?: Maybe<Scalars['Boolean']['output']>;
1036
1036
  mobile_ads_enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -1305,6 +1305,7 @@ export type Campaign = {
1305
1305
  updated_at?: Maybe<Scalars['String']['output']>;
1306
1306
  updated_by_id?: Maybe<Scalars['ID']['output']>;
1307
1307
  uuid?: Maybe<Scalars['String']['output']>;
1308
+ welcome?: Maybe<Scalars['Boolean']['output']>;
1308
1309
  };
1309
1310
 
1310
1311
 
@@ -1378,6 +1379,7 @@ export type CampaignFilterParams = {
1378
1379
  state?: InputMaybe<Array<CampaignStateFilter>>;
1379
1380
  tag?: InputMaybe<Array<Scalars['String']['input']>>;
1380
1381
  type?: InputMaybe<Array<CampaignTypeFilter>>;
1382
+ welcome?: InputMaybe<Scalars['Boolean']['input']>;
1381
1383
  };
1382
1384
 
1383
1385
  export type CampaignInvitation = {
@@ -1957,6 +1959,7 @@ export type CreateCampaignDataCampaign = {
1957
1959
  survey_enabled?: InputMaybe<Scalars['Boolean']['input']>;
1958
1960
  tag_list?: InputMaybe<Array<Scalars['String']['input']>>;
1959
1961
  tiktok_enabled?: InputMaybe<Scalars['Boolean']['input']>;
1962
+ welcome?: InputMaybe<Scalars['Boolean']['input']>;
1960
1963
  };
1961
1964
 
1962
1965
  export type CreateCampaignInvitation = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.697.0",
3
+ "version": "1.699.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -999,7 +999,7 @@ type BrandSettings {
999
999
  frame_campaigns_enabled: Boolean
1000
1000
  google_ads_enabled: Boolean
1001
1001
  instamatch_enabled: Boolean
1002
- landing_page_imagaery_enabled: Boolean
1002
+ landing_page_imagery_enabled: Boolean
1003
1003
  limit_single_retailer_location: Boolean
1004
1004
  match_enabled: Boolean
1005
1005
  mobile_ads_enabled: Boolean
@@ -1262,6 +1262,7 @@ type Campaign {
1262
1262
  updated_at: String
1263
1263
  updated_by_id: ID
1264
1264
  uuid: String
1265
+ welcome: Boolean
1265
1266
  }
1266
1267
 
1267
1268
  type CampaignChannel {
@@ -1303,6 +1304,7 @@ input CampaignFilterParams {
1303
1304
  state: [CampaignStateFilter!]
1304
1305
  tag: [String!]
1305
1306
  type: [CampaignTypeFilter!]
1307
+ welcome: Boolean
1306
1308
  }
1307
1309
 
1308
1310
  type CampaignInvitation {
@@ -1859,6 +1861,7 @@ input CreateCampaignDataCampaign {
1859
1861
  survey_enabled: Boolean
1860
1862
  tag_list: [String!]
1861
1863
  tiktok_enabled: Boolean
1864
+ welcome: Boolean
1862
1865
  }
1863
1866
 
1864
1867
  input CreateCampaignInvitation {