@promoboxx/graphql-gateway-types 1.16.0 → 1.18.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.
@@ -27228,7 +27228,7 @@
27228
27228
  "args": [],
27229
27229
  "type": {
27230
27230
  "kind": "SCALAR",
27231
- "name": "Int",
27231
+ "name": "Float",
27232
27232
  "ofType": null
27233
27233
  },
27234
27234
  "isDeprecated": false,
@@ -52684,13 +52684,9 @@
52684
52684
  "name": "intended_amount_cents",
52685
52685
  "description": null,
52686
52686
  "type": {
52687
- "kind": "NON_NULL",
52688
- "name": null,
52689
- "ofType": {
52690
- "kind": "SCALAR",
52691
- "name": "String",
52692
- "ofType": null
52693
- }
52687
+ "kind": "SCALAR",
52688
+ "name": "String",
52689
+ "ofType": null
52694
52690
  },
52695
52691
  "defaultValue": null,
52696
52692
  "isDeprecated": false,
package/index.d.ts CHANGED
@@ -2960,7 +2960,7 @@ export type FacebookUserAndRole = {
2960
2960
 
2961
2961
  export type File = {
2962
2962
  __typename?: 'File';
2963
- bytes?: Maybe<Scalars['Int']['output']>;
2963
+ bytes?: Maybe<Scalars['Float']['output']>;
2964
2964
  format?: Maybe<Scalars['String']['output']>;
2965
2965
  height?: Maybe<Scalars['Int']['output']>;
2966
2966
  id?: Maybe<Scalars['ID']['output']>;
@@ -6386,7 +6386,7 @@ export type RetailerFields =
6386
6386
  export type RetailerInvite = {
6387
6387
  business_id?: InputMaybe<Scalars['ID']['input']>;
6388
6388
  id: Scalars['ID']['input'];
6389
- intended_amount_cents: Scalars['String']['input'];
6389
+ intended_amount_cents?: InputMaybe<Scalars['String']['input']>;
6390
6390
  };
6391
6391
 
6392
6392
  export type RetailerRequests = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.16.0",
3
+ "version": "1.18.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2858,7 +2858,7 @@ type FacebookUserAndRole {
2858
2858
  }
2859
2859
 
2860
2860
  type File {
2861
- bytes: Int
2861
+ bytes: Float
2862
2862
  format: String
2863
2863
  height: Int
2864
2864
  id: ID
@@ -4827,7 +4827,7 @@ enum RetailerFields {
4827
4827
  input RetailerInvite {
4828
4828
  business_id: ID
4829
4829
  id: ID!
4830
- intended_amount_cents: String!
4830
+ intended_amount_cents: String
4831
4831
  }
4832
4832
 
4833
4833
  type RetailerRequests {