@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.554.0",
3
+ "version": "1.555.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -8078,6 +8078,7 @@ type Retailer {
8078
8078
  brand: Brand
8079
8079
  brand_id: ID
8080
8080
  business_id: ID
8081
+ claimed: Boolean
8081
8082
  created_at: String
8082
8083
  created_by_id: ID
8083
8084
  customFieldValues: [CustomFieldValues!]!