@promoboxx/graphql-gateway-types 1.1157.0 → 1.1159.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.
@@ -16351,6 +16351,26 @@
16351
16351
  "isDeprecated": false,
16352
16352
  "deprecationReason": null
16353
16353
  },
16354
+ {
16355
+ "name": "product_lines",
16356
+ "description": null,
16357
+ "type": {
16358
+ "kind": "LIST",
16359
+ "name": null,
16360
+ "ofType": {
16361
+ "kind": "NON_NULL",
16362
+ "name": null,
16363
+ "ofType": {
16364
+ "kind": "SCALAR",
16365
+ "name": "String",
16366
+ "ofType": null
16367
+ }
16368
+ }
16369
+ },
16370
+ "defaultValue": null,
16371
+ "isDeprecated": false,
16372
+ "deprecationReason": null
16373
+ },
16354
16374
  {
16355
16375
  "name": "show_state",
16356
16376
  "description": null,
package/index.d.ts CHANGED
@@ -1727,6 +1727,7 @@ export type CampaignSearchFilterParams = {
1727
1727
  instagram?: InputMaybe<Scalars['Boolean']['input']>;
1728
1728
  opt_out?: InputMaybe<Scalars['Boolean']['input']>;
1729
1729
  popular?: InputMaybe<Scalars['Boolean']['input']>;
1730
+ product_lines?: InputMaybe<Array<Scalars['String']['input']>>;
1730
1731
  show_state?: InputMaybe<CampaignSearchShowState>;
1731
1732
  twitter?: InputMaybe<Scalars['Boolean']['input']>;
1732
1733
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1157.0",
3
+ "version": "1.1159.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1636,6 +1636,7 @@ input CampaignSearchFilterParams {
1636
1636
  instagram: Boolean
1637
1637
  opt_out: Boolean
1638
1638
  popular: Boolean
1639
+ product_lines: [String!]
1639
1640
  show_state: CampaignSearchShowState
1640
1641
  twitter: Boolean
1641
1642
  }