@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.
- package/graphql.schema.json +20 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -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