@promoboxx/graphql-gateway-types 1.67.0 → 1.69.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 +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -52490,6 +52490,18 @@
|
|
|
52490
52490
|
"isDeprecated": false,
|
|
52491
52491
|
"deprecationReason": null
|
|
52492
52492
|
},
|
|
52493
|
+
{
|
|
52494
|
+
"name": "paid_ad_radius",
|
|
52495
|
+
"description": null,
|
|
52496
|
+
"args": [],
|
|
52497
|
+
"type": {
|
|
52498
|
+
"kind": "SCALAR",
|
|
52499
|
+
"name": "Int",
|
|
52500
|
+
"ofType": null
|
|
52501
|
+
},
|
|
52502
|
+
"isDeprecated": false,
|
|
52503
|
+
"deprecationReason": null
|
|
52504
|
+
},
|
|
52493
52505
|
{
|
|
52494
52506
|
"name": "phone",
|
|
52495
52507
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -6376,6 +6376,7 @@ export type Retailer = {
|
|
|
6376
6376
|
logo_url?: Maybe<Scalars['String']['output']>;
|
|
6377
6377
|
multi_brand?: Maybe<Scalars['Boolean']['output']>;
|
|
6378
6378
|
name?: Maybe<Scalars['String']['output']>;
|
|
6379
|
+
paid_ad_radius?: Maybe<Scalars['Int']['output']>;
|
|
6379
6380
|
phone?: Maybe<Scalars['String']['output']>;
|
|
6380
6381
|
phone_extension?: Maybe<Scalars['String']['output']>;
|
|
6381
6382
|
primary_user_id?: Maybe<Scalars['ID']['output']>;
|
package/package.json
CHANGED