@promoboxx/graphql-gateway-types 1.554.0 → 1.555.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
|
@@ -73129,6 +73129,18 @@
|
|
|
73129
73129
|
"isDeprecated": false,
|
|
73130
73130
|
"deprecationReason": null
|
|
73131
73131
|
},
|
|
73132
|
+
{
|
|
73133
|
+
"name": "claimed",
|
|
73134
|
+
"description": null,
|
|
73135
|
+
"args": [],
|
|
73136
|
+
"type": {
|
|
73137
|
+
"kind": "SCALAR",
|
|
73138
|
+
"name": "Boolean",
|
|
73139
|
+
"ofType": null
|
|
73140
|
+
},
|
|
73141
|
+
"isDeprecated": false,
|
|
73142
|
+
"deprecationReason": null
|
|
73143
|
+
},
|
|
73132
73144
|
{
|
|
73133
73145
|
"name": "created_at",
|
|
73134
73146
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -9570,6 +9570,7 @@ export type Retailer = {
|
|
|
9570
9570
|
brand?: Maybe<Brand>;
|
|
9571
9571
|
brand_id?: Maybe<Scalars['ID']['output']>;
|
|
9572
9572
|
business_id?: Maybe<Scalars['ID']['output']>;
|
|
9573
|
+
claimed?: Maybe<Scalars['Boolean']['output']>;
|
|
9573
9574
|
created_at?: Maybe<Scalars['String']['output']>;
|
|
9574
9575
|
created_by_id?: Maybe<Scalars['ID']['output']>;
|
|
9575
9576
|
customFieldValues: Array<CustomFieldValues>;
|
package/package.json
CHANGED