@promoboxx/graphql-gateway-types 1.210.0 → 1.212.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 +15 -7
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/schema.graphql +2 -1
package/graphql.schema.json
CHANGED
|
@@ -82836,13 +82836,21 @@
|
|
|
82836
82836
|
"name": "name",
|
|
82837
82837
|
"description": null,
|
|
82838
82838
|
"type": {
|
|
82839
|
-
"kind": "
|
|
82840
|
-
"name":
|
|
82841
|
-
"ofType":
|
|
82842
|
-
|
|
82843
|
-
|
|
82844
|
-
|
|
82845
|
-
|
|
82839
|
+
"kind": "SCALAR",
|
|
82840
|
+
"name": "String",
|
|
82841
|
+
"ofType": null
|
|
82842
|
+
},
|
|
82843
|
+
"defaultValue": null,
|
|
82844
|
+
"isDeprecated": false,
|
|
82845
|
+
"deprecationReason": null
|
|
82846
|
+
},
|
|
82847
|
+
{
|
|
82848
|
+
"name": "paid_ad_radius",
|
|
82849
|
+
"description": null,
|
|
82850
|
+
"type": {
|
|
82851
|
+
"kind": "SCALAR",
|
|
82852
|
+
"name": "Int",
|
|
82853
|
+
"ofType": null
|
|
82846
82854
|
},
|
|
82847
82855
|
"defaultValue": null,
|
|
82848
82856
|
"isDeprecated": false,
|
package/index.d.ts
CHANGED
|
@@ -10550,7 +10550,8 @@ export type UpdateRetailerAccountParams = {
|
|
|
10550
10550
|
export type UpdateRetailerParams = {
|
|
10551
10551
|
brand_id?: InputMaybe<Scalars['String']['input']>;
|
|
10552
10552
|
logo?: InputMaybe<Scalars['String']['input']>;
|
|
10553
|
-
name
|
|
10553
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
10554
|
+
paid_ad_radius?: InputMaybe<Scalars['Int']['input']>;
|
|
10554
10555
|
phone?: InputMaybe<Scalars['String']['input']>;
|
|
10555
10556
|
phone_extension?: InputMaybe<Scalars['String']['input']>;
|
|
10556
10557
|
primary_user_id?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -9424,7 +9424,8 @@ input UpdateRetailerAccountParams {
|
|
|
9424
9424
|
input UpdateRetailerParams {
|
|
9425
9425
|
brand_id: String
|
|
9426
9426
|
logo: String
|
|
9427
|
-
name: String
|
|
9427
|
+
name: String
|
|
9428
|
+
paid_ad_radius: Int
|
|
9428
9429
|
phone: String
|
|
9429
9430
|
phone_extension: String
|
|
9430
9431
|
primary_user_id: String
|