@promoboxx/graphql-gateway-types 1.51.0 → 1.53.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.
@@ -57513,8 +57513,8 @@
57513
57513
  "ofType": null
57514
57514
  }
57515
57515
  },
57516
- "isDeprecated": false,
57517
- "deprecationReason": null
57516
+ "isDeprecated": true,
57517
+ "deprecationReason": "deprecated in favor of final_charge_amount"
57518
57518
  },
57519
57519
  {
57520
57520
  "name": "client_secret",
@@ -57548,6 +57548,22 @@
57548
57548
  "isDeprecated": false,
57549
57549
  "deprecationReason": null
57550
57550
  },
57551
+ {
57552
+ "name": "final_charge_amount",
57553
+ "description": null,
57554
+ "args": [],
57555
+ "type": {
57556
+ "kind": "NON_NULL",
57557
+ "name": null,
57558
+ "ofType": {
57559
+ "kind": "SCALAR",
57560
+ "name": "String",
57561
+ "ofType": null
57562
+ }
57563
+ },
57564
+ "isDeprecated": false,
57565
+ "deprecationReason": null
57566
+ },
57551
57567
  {
57552
57568
  "name": "id",
57553
57569
  "description": null,
@@ -62457,6 +62473,26 @@
62457
62473
  "isDeprecated": false,
62458
62474
  "deprecationReason": null
62459
62475
  },
62476
+ {
62477
+ "name": "brands",
62478
+ "description": null,
62479
+ "args": [],
62480
+ "type": {
62481
+ "kind": "LIST",
62482
+ "name": null,
62483
+ "ofType": {
62484
+ "kind": "NON_NULL",
62485
+ "name": null,
62486
+ "ofType": {
62487
+ "kind": "OBJECT",
62488
+ "name": "Brand",
62489
+ "ofType": null
62490
+ }
62491
+ }
62492
+ },
62493
+ "isDeprecated": false,
62494
+ "deprecationReason": null
62495
+ },
62460
62496
  {
62461
62497
  "name": "clickwrap_accepted_at",
62462
62498
  "description": null,
@@ -62517,6 +62553,26 @@
62517
62553
  "isDeprecated": false,
62518
62554
  "deprecationReason": null
62519
62555
  },
62556
+ {
62557
+ "name": "divisions",
62558
+ "description": null,
62559
+ "args": [],
62560
+ "type": {
62561
+ "kind": "LIST",
62562
+ "name": null,
62563
+ "ofType": {
62564
+ "kind": "NON_NULL",
62565
+ "name": null,
62566
+ "ofType": {
62567
+ "kind": "OBJECT",
62568
+ "name": "Division",
62569
+ "ofType": null
62570
+ }
62571
+ }
62572
+ },
62573
+ "isDeprecated": false,
62574
+ "deprecationReason": null
62575
+ },
62520
62576
  {
62521
62577
  "name": "email",
62522
62578
  "description": null,
package/index.d.ts CHANGED
@@ -6924,9 +6924,11 @@ export type StatsType =
6924
6924
  export type StripePaymentIntent = {
6925
6925
  __typename?: 'StripePaymentIntent';
6926
6926
  amount: Scalars['String']['output'];
6927
+ /** @deprecated deprecated in favor of final_charge_amount */
6927
6928
  amount_stripe_fee: Scalars['String']['output'];
6928
6929
  client_secret: Scalars['String']['output'];
6929
6930
  created_at: Scalars['String']['output'];
6931
+ final_charge_amount: Scalars['String']['output'];
6930
6932
  id: Scalars['ID']['output'];
6931
6933
  payment_intent_id: Scalars['String']['output'];
6932
6934
  status: Scalars['String']['output'];
@@ -7454,11 +7456,13 @@ export type User = {
7454
7456
  access_invitations?: Maybe<Array<AccessInvitation>>;
7455
7457
  access_requests?: Maybe<Array<AccessRequest>>;
7456
7458
  actionable_access_requests?: Maybe<Array<AccessRequest>>;
7459
+ brands?: Maybe<Array<Brand>>;
7457
7460
  clickwrap_accepted_at?: Maybe<Scalars['String']['output']>;
7458
7461
  company?: Maybe<Scalars['String']['output']>;
7459
7462
  created_at?: Maybe<Scalars['String']['output']>;
7460
7463
  created_by_id?: Maybe<Scalars['ID']['output']>;
7461
7464
  deactivated_by?: Maybe<Scalars['String']['output']>;
7465
+ divisions?: Maybe<Array<Division>>;
7462
7466
  email?: Maybe<Scalars['String']['output']>;
7463
7467
  facebook_accounts?: Maybe<Array<FacebookAccount>>;
7464
7468
  first_name?: Maybe<Scalars['String']['output']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.51.0",
3
+ "version": "1.53.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -5332,9 +5332,10 @@ enum StatsType {
5332
5332
 
5333
5333
  type StripePaymentIntent {
5334
5334
  amount: String!
5335
- amount_stripe_fee: String!
5335
+ amount_stripe_fee: String! @deprecated(reason: "deprecated in favor of final_charge_amount")
5336
5336
  client_secret: String!
5337
5337
  created_at: String!
5338
+ final_charge_amount: String!
5338
5339
  id: ID!
5339
5340
  payment_intent_id: String!
5340
5341
  status: String!
@@ -5849,11 +5850,13 @@ type User {
5849
5850
  access_invitations: [AccessInvitation!]
5850
5851
  access_requests: [AccessRequest!]
5851
5852
  actionable_access_requests: [AccessRequest!]
5853
+ brands: [Brand!]
5852
5854
  clickwrap_accepted_at: String
5853
5855
  company: String
5854
5856
  created_at: String
5855
5857
  created_by_id: ID
5856
5858
  deactivated_by: String
5859
+ divisions: [Division!]
5857
5860
  email: String
5858
5861
  facebook_accounts: [FacebookAccount!]
5859
5862
  first_name: String